mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-10 00:34:59 +01:00
variable for packaging channelstrip. allow rename
This commit is contained in:
parent
5b60070034
commit
a9a6d6da4e
3 changed files with 22 additions and 16 deletions
|
|
@ -23,6 +23,7 @@ WITH_LADSPA=1
|
|||
STRIP=1
|
||||
PRINT_SYSDEPS=
|
||||
WITH_NLS=
|
||||
: ${HARRISONCHANNELSTRIP=harrison_channelstrip}
|
||||
|
||||
while [ $# -gt 0 ] ; do
|
||||
echo "arg = $1"
|
||||
|
|
@ -71,6 +72,7 @@ while [ $# -gt 0 ] ; do
|
|||
--nostrip) STRIP= ; shift ;;
|
||||
--sysdeps) PRINT_SYSDEPS=1; shift ;;
|
||||
--nls) WITH_NLS=1 ; shift ;;
|
||||
--chanstrip) HARRISONCHANNELSTRIP=$2 ; shift; shift ;;
|
||||
esac
|
||||
done
|
||||
|
||||
|
|
@ -688,12 +690,12 @@ if test -n "$MIXBUS"; then
|
|||
mkdir -p "${PRODUCT_PKG_DIR}/${APPROOT}/lib/ladspa/strip"
|
||||
|
||||
curl -s -S --fail -# \
|
||||
-z "${CACHEDIR}/harrison_channelstrip.${OSX_BENSID}.so" \
|
||||
-o "${CACHEDIR}/harrison_channelstrip.${OSX_BENSID}.so" \
|
||||
"http://www.harrisonconsoles.com/mixbus/mb3/beta/harrison-dsp/harrison_channelstrip.${OSX_BENSID}.so"
|
||||
-z "${CACHEDIR}/${HARRISONCHANNELSTRIP}.${OSX_BENSID}.so" \
|
||||
-o "${CACHEDIR}/${HARRISONCHANNELSTRIP}.${OSX_BENSID}.so" \
|
||||
"http://www.harrisonconsoles.com/mixbus/mb3/beta/harrison-dsp/${HARRISONCHANNELSTRIP}.${OSX_BENSID}.so"
|
||||
|
||||
cp "${CACHEDIR}/harrison_channelstrip.${OSX_BENSID}.so" \
|
||||
"${PRODUCT_PKG_DIR}/${APPROOT}/lib/ladspa/strip/harrison_channelstrip.so"
|
||||
cp "${CACHEDIR}/${HARRISONCHANNELSTRIP}.${OSX_BENSID}.so" \
|
||||
"${PRODUCT_PKG_DIR}/${APPROOT}/lib/ladspa/strip/${HARRISONCHANNELSTRIP}.so"
|
||||
fi
|
||||
################################################################################
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue