mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-08 07:45:00 +01:00
optionally include video-server in linux bundle
This commit is contained in:
parent
1bec1059fb
commit
bb9847abcd
1 changed files with 12 additions and 0 deletions
|
|
@ -16,6 +16,7 @@ BUILD_ROOT=../../build
|
||||||
|
|
||||||
MIXBUS=
|
MIXBUS=
|
||||||
WITH_LADSPA=0
|
WITH_LADSPA=0
|
||||||
|
WITH_HARVID=0
|
||||||
STRIP=all
|
STRIP=all
|
||||||
PRINT_SYSDEPS=
|
PRINT_SYSDEPS=
|
||||||
WITH_NLS=
|
WITH_NLS=
|
||||||
|
|
@ -70,6 +71,7 @@ while [ $# -gt 0 ] ; do
|
||||||
--strip) STRIP=$2 ; shift ; shift ;;
|
--strip) STRIP=$2 ; shift ; shift ;;
|
||||||
--sysdeps) PRINT_SYSDEPS=1; shift ;;
|
--sysdeps) PRINT_SYSDEPS=1; shift ;;
|
||||||
--nls) WITH_NLS=1 ; shift ;;
|
--nls) WITH_NLS=1 ; shift ;;
|
||||||
|
--harvid) WITH_HARVID=1 ; shift ;;
|
||||||
|
|
||||||
*)
|
*)
|
||||||
#catch all for unknown arguments
|
#catch all for unknown arguments
|
||||||
|
|
@ -99,11 +101,13 @@ case `uname -m` in
|
||||||
echo "Architecture is x86"
|
echo "Architecture is x86"
|
||||||
ARCH='x86'
|
ARCH='x86'
|
||||||
ARCH_BITS='32-bit'
|
ARCH_BITS='32-bit'
|
||||||
|
MULTIARCH='i386-linux-gnu'
|
||||||
;;
|
;;
|
||||||
x86_64|amd64|AMD64)
|
x86_64|amd64|AMD64)
|
||||||
echo "Architecture is x86_64"
|
echo "Architecture is x86_64"
|
||||||
ARCH='x86_64'
|
ARCH='x86_64'
|
||||||
ARCH_BITS='64-bit'
|
ARCH_BITS='64-bit'
|
||||||
|
MULTIARCH='x86_64-linux-gnu'
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
echo ""
|
echo ""
|
||||||
|
|
@ -525,6 +529,14 @@ for svndir in `find $APPDIR -name .svn -type d`; do
|
||||||
rm -rf $svndir
|
rm -rf $svndir
|
||||||
done
|
done
|
||||||
|
|
||||||
|
if test x$WITH_HARVID != x ; then
|
||||||
|
cd $APPBIN
|
||||||
|
HARVID_VERSION="v0.7.0" # todo make 'latest' symlink on github work somehow.
|
||||||
|
curl http://x42.github.com/harvid/releases/harvid-${MULTIARCH}-${HARVID_VERSION}.tgz \
|
||||||
|
| tar -x -z --exclude=README --exclude=harvid.1 --strip-components=1 || exit 1
|
||||||
|
cd -
|
||||||
|
fi
|
||||||
|
|
||||||
#
|
#
|
||||||
# Add the uninstaller
|
# Add the uninstaller
|
||||||
#
|
#
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue