audio/samplv1: Updated for version 0.9.11.
Signed-off-by: B. Watson <yalhcru@gmail.com>
This commit is contained in:
parent
1d51377f3a
commit
a7e39c0d35
|
@ -4,8 +4,10 @@ samplv1 is an old-school all-digital polyphonic sampler synthesizer
|
|||
with stereo fx. It runs either as a standalone JACK application or an
|
||||
LV2 instrument plugin.
|
||||
|
||||
Optional dependency: The LV2 instrument plugin requires lv2 to be
|
||||
installed (auto-detected at compile time).
|
||||
Optional dependencies (autodetected):
|
||||
|
||||
lv2 - required to build samplv1's LV2 instrument plugins.
|
||||
liblo - required for OSC (Open Sound Control) support.
|
||||
|
||||
This package uses POSIX filesystem capabilities to execute with
|
||||
elevated privileges (required for realtime audio processing). This
|
||||
|
|
|
@ -6,6 +6,8 @@
|
|||
|
||||
# Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details.
|
||||
|
||||
# 20191210 bkw: update for 0.9.11, document optional liblo dep, have slack-desc
|
||||
# tell user whether or not optional deps are included.
|
||||
# 20181216 bkw: update for 0.9.4, which now requires qt5 :(
|
||||
# 20180615 bkw: update for 0.9.2
|
||||
# 20180702 bkw: update for 0.9.1, install French man page correctly.
|
||||
|
@ -16,7 +18,7 @@
|
|||
# 20170614 bkw: update for 0.8.2, drop qt5 dep, build with qt4
|
||||
|
||||
PRGNAM=samplv1
|
||||
VERSION=${VERSION:-0.9.4}
|
||||
VERSION=${VERSION:-0.9.11}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
|
@ -98,8 +100,14 @@ mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
|||
cp -a AUTHORS COPYING ChangeLog README TODO $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
|
||||
LIBLO=no
|
||||
LV2=no
|
||||
ldd $PKG/usr/bin/${PRGNAM}_jack | grep -q liblo && LIBLO=yes
|
||||
[ -e $PKG/usr/lib$LIBDIRSUFFIX/lv2/$PRGNAM.lv2 ] && LV2=yes
|
||||
|
||||
mkdir -p $PKG/install
|
||||
cat $CWD/slack-desc > $PKG/install/slack-desc
|
||||
sed -e "s,@LIBLO@,$LIBLO," -e "s,@LV2@,$LV2," $CWD/slack-desc \
|
||||
> $PKG/install/slack-desc
|
||||
cat $CWD/doinst.sh > $PKG/install/doinst.sh
|
||||
|
||||
if [ "${SETCAP:-yes}" = "yes" ]; then
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
PRGNAM="samplv1"
|
||||
VERSION="0.9.4"
|
||||
VERSION="0.9.11"
|
||||
HOMEPAGE="https://samplv1.sourceforge.io/"
|
||||
DOWNLOAD="https://downloads.sourceforge.net/project/samplv1/samplv1/0.9.4/samplv1-0.9.4.tar.gz"
|
||||
MD5SUM="7976e61b9db5fd7acd4a777b81faec1b"
|
||||
DOWNLOAD="https://downloads.sourceforge.net/project/samplv1/samplv1/0.9.11/samplv1-0.9.11.tar.gz"
|
||||
MD5SUM="1d848f6b0a4fab0ee66a4c1b4f09a564"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES="jack-audio-connection-kit qt5"
|
||||
|
|
|
@ -12,8 +12,8 @@ samplv1: samplv1 is an old-school all-digital polyphonic sampler synthesizer
|
|||
samplv1: with stereo fx. It runs either as a standalone JACK application or an
|
||||
samplv1: LV2 instrument plugin.
|
||||
samplv1:
|
||||
samplv1: Build options:
|
||||
samplv1:
|
||||
samplv1:
|
||||
samplv1:
|
||||
samplv1:
|
||||
samplv1: liblo (OSC support): @LIBLO@
|
||||
samplv1: lv2 instrument support: @LV2@
|
||||
samplv1:
|
||||
|
|
Loading…
Reference in New Issue