From 7bb24872e532cc1c0067bc3a8fcf7e4ec7f52beb Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Tue, 16 Apr 2013 21:53:38 +0200 Subject: [PATCH] update linux packaging script to include xjadeo & harvid --- tools/linux_packaging/build | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tools/linux_packaging/build b/tools/linux_packaging/build index b332365407..9f70f95eb2 100755 --- a/tools/linux_packaging/build +++ b/tools/linux_packaging/build @@ -530,9 +530,13 @@ done if test x$WITH_HARVID != x ; then cd $APPBIN - HARVID_VERSION=$(curl http://ardour.org/files/video-tools/latest_version_numer.txt) + HARVID_VERSION=$(curl http://ardour.org/files/video-tools/harvid_version.txt) curl -L http://ardour.org/files/video-tools/harvid-${MULTIARCH}-${HARVID_VERSION}.tgz \ | tar -x -z --exclude=README --exclude=harvid.1 --strip-components=1 || exit 1 + XJADEO_VERSION=$(curl http://ardour.org/files/video-tools/xjadeo_version.txt) + curl -L http://ardour.org/files/video-tools/xjadeo-${MULTIARCH}-${XJADEO_VERSION}.tgz \ + | tar -x -z --exclude=README --exclude=xjadeo.1 --strip-components=1 || exit 1 + mv xjadeo xjremote cd - fi