~pygame/pygame/trunk

« back to all changes in this revision

Viewing changes to manylinux-build/docker_base/flac/build-flac.sh

  • Committer: pygame
  • Date: 2017-01-10 00:31:42 UTC
  • Revision ID: git-v1:2eea4f299a2e791f884608d7ed601558634af73c
commit 1639c41a8cb3433046882ede92c80ce69d59016b
Author: Thomas Kluyver <takowl@gmail.com>
Date:   Sun Jan 8 18:46:46 2017 +0000

    Build newer versions of libogg and libvorbis into Linux base images

    Closes #317
    Closes #323

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/bash
 
2
set -e -x
 
3
 
 
4
cd $(dirname `readlink -f "$0"`)
 
5
 
 
6
FLAC=flac-1.3.1
 
7
 
 
8
curl -sL http://downloads.xiph.org/releases/flac/${FLAC}.tar.xz > ${FLAC}.tar.xz
 
9
sha512sum -c flac.sha512
 
10
 
 
11
# The tar we have is too old to handle .tar.xz directly
 
12
unxz ${FLAC}.tar.xz
 
13
tar xf ${FLAC}.tar
 
14
cd $FLAC
 
15
./configure
 
16
make
 
17
make install