diff options
author | Tim-Philipp Müller <tim@centricular.com> | 2015-10-20 11:28:52 +0100 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.com> | 2015-10-20 11:29:48 +0100 |
commit | d58514bf40428cf90c6d01cf8068b43b2693f731 (patch) | |
tree | 9170683c0b9ec161c392ed50163899ae1faf2143 /testsuite | |
parent | 022d72e3f24013f46e8c5e235d21d902b7a8a1d0 (diff) | |
download | orc-d58514bf40428cf90c6d01cf8068b43b2693f731.tar.gz |
doc: update from entropywave locations to gstreamer
The entropywave website isn't even up any longer.
Docs have been uploaded to gstreamer website too now.
Diffstat (limited to 'testsuite')
-rwxr-xr-x | testsuite/compatibility/compatibility_check | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/testsuite/compatibility/compatibility_check b/testsuite/compatibility/compatibility_check index 8753601..02d4de4 100755 --- a/testsuite/compatibility/compatibility_check +++ b/testsuite/compatibility/compatibility_check @@ -8,14 +8,21 @@ topdir=`pwd` tmpdir=${topdir}/tmp test -f orc-${version}.tar.gz || \ - wget http://code.entropywave.com/download/orc/orc-${version}.tar.gz +test -f orc-${version}.tar.xz || \ + wget http://gstreamer.freedesktop.org/src/orc/orc-${version}.tar.gz || \ + wget http://gstreamer.freedesktop.org/src/orc/orc-${version}.tar.xz rm -rf ${tmpdir} mkdir -p ${tmpdir} -../tools/orcc -o ${tmpdir}/out.c --implementation test.orc +# FIXME: no test.orc .. +libtool --mode=execute ../../tools/orcc -o ${tmpdir}/out.c --implementation test.orc -tar -xzf orc-${version}.tar.gz --directory ${tmpdir} +if test -f orc-${version}.tar.gz; then + tar -xzf orc-${version}.tar.gz --directory ${tmpdir} +elif test -f orc-${version}.tar.xz; then + tar -xzf orc-${version}.tar.xz --directory ${tmpdir} +fi cd ${tmpdir} cd orc-${version} |