Welcome to mirror list, hosted at ThFree Co, Russian Federation.

build_compat_libs « compatibility « testsuite - github.com/GStreamer/orc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ab6453957d7dc1c34185e4f32e0707822215e2b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#!/bin/sh

set -e
set -x

topdir=`pwd`
builddir=${topdir}/build
installdir=${topdir}/install

#rm -rf ${builddir} ${installdir}
mkdir -p ${builddir}
mkdir -p ${installdir}

for version in 0.4.0 0.4.1 0.4.2 0.4.3 0.4.4 0.4.5
do

  test -f orc-${version}.tar.gz || \
    wget http://code.entropywave.com/download/orc/orc-${version}.tar.gz

  tar -xzf orc-${version}.tar.gz --directory ${builddir}

  cd ${builddir}/orc-${version}
  ./configure --prefix=${topdir}/install/${version}
  make
  make install
  cd ${topdir}

done

rm -rf ${builddir}