mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-21 19:42:24 +01:00
audio/samplv1: Updated for version 1.0.0.
Signed-off-by: B. Watson <urchlay@slackware.uk> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
ffa9e1f88b
commit
43ef6f3fa2
2 changed files with 11 additions and 4 deletions
|
@ -6,6 +6,7 @@
|
|||
|
||||
# Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details.
|
||||
|
||||
# 20240815 bkw: update for 1.0.0
|
||||
# 20230629 bkw: update for 0.9.31
|
||||
# 20230109 bkw: update for 0.9.28
|
||||
# 20211205 bkw: update for 0.9.23
|
||||
|
@ -25,7 +26,7 @@
|
|||
cd $(dirname $0) ; CWD=$(pwd)
|
||||
|
||||
PRGNAM=samplv1
|
||||
VERSION=${VERSION:-0.9.31}
|
||||
VERSION=${VERSION:-1.0.0}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
PKGTYPE=${PKGTYPE:-tgz}
|
||||
|
@ -73,6 +74,11 @@ chown -R root:root .
|
|||
find -L . -perm /111 -a \! -perm 755 -a -exec chmod 755 {} \+ -o \
|
||||
\! -perm /111 -a \! -perm 644 -a -exec chmod 644 {} \+
|
||||
|
||||
# 20240815 bkw: lv2 is supposed to be autodetected, but if it's
|
||||
# missing, the build fails unless we explicitly disable. So:
|
||||
LV2_OPT="OFF"
|
||||
pkg-config --exists lv2 && LV2_OPT="ON"
|
||||
|
||||
export PATH=/usr/lib$LIBDIRSUFFIX/qt5/bin:$PATH
|
||||
|
||||
mkdir -p build
|
||||
|
@ -82,6 +88,7 @@ cd build
|
|||
-DCMAKE_CXX_FLAGS:STRING="$SLKCFLAGS" \
|
||||
-DCMAKE_INSTALL_MANDIR=/usr/man \
|
||||
-DCMAKE_INSTALL_PREFIX=/usr \
|
||||
-DCONFIG_LV2=$LV2_OPT \
|
||||
-DCMAKE_BUILD_TYPE=Release ..
|
||||
make VERBOSE=1
|
||||
make install/strip DESTDIR=$PKG
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
PRGNAM="samplv1"
|
||||
VERSION="0.9.31"
|
||||
VERSION="1.0.0"
|
||||
HOMEPAGE="https://samplv1.sourceforge.io/"
|
||||
DOWNLOAD="https://downloads.sourceforge.net/project/samplv1/samplv1/0.9.31/samplv1-0.9.31.tar.gz"
|
||||
MD5SUM="2df4770029ebdafe734555591812d563"
|
||||
DOWNLOAD="https://downloads.sourceforge.net/project/samplv1/samplv1/1.0.0/samplv1-1.0.0.tar.gz"
|
||||
MD5SUM="3eb19564b74d70e77df8e8eab97f6661"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES="jack"
|
||||
|
|
Loading…
Reference in a new issue