summaryrefslogtreecommitdiffstats
path: root/audio
diff options
context:
space:
mode:
author B. Watson <yalhcru@gmail.com>2015-04-04 13:49:56 +0700
committer Willy Sudiarto Raharjo <willysr@slackbuilds.org>2015-04-04 13:49:56 +0700
commit77d2d6104ed28dbbdae6da4a073a8a79dd94bb38 (patch)
tree8512c9dfc815d5969dca127ce850b8969bf0c78c /audio
parentac05150269d02e140b05abe649a71c83a5c2190e (diff)
downloadslackbuilds-77d2d6104ed28dbbdae6da4a073a8a79dd94bb38.tar.gz
slackbuilds-77d2d6104ed28dbbdae6da4a073a8a79dd94bb38.tar.xz
audio/vamp-plugin-sdk: Get rid of .la files.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'audio')
-rw-r--r--audio/vamp-plugin-sdk/vamp-plugin-sdk.SlackBuild20
1 files changed, 14 insertions, 6 deletions
diff --git a/audio/vamp-plugin-sdk/vamp-plugin-sdk.SlackBuild b/audio/vamp-plugin-sdk/vamp-plugin-sdk.SlackBuild
index 135292b968..947fcaa39e 100644
--- a/audio/vamp-plugin-sdk/vamp-plugin-sdk.SlackBuild
+++ b/audio/vamp-plugin-sdk/vamp-plugin-sdk.SlackBuild
@@ -15,9 +15,12 @@
# - Use sed instead of a diff for lib64 on x86_64
# - Fix the x86_64 lib path in the .pc files, too
+# 20150403 bkw:
+# - Bump BUILD, get rid of *.la files
+
PRGNAM=vamp-plugin-sdk
VERSION=${VERSION:-2.5}
-BUILD=${BUILD:-1}
+BUILD=${BUILD:-2}
TAG=${TAG:-_SBo}
if [ -z "$ARCH" ]; then
@@ -57,10 +60,10 @@ tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
cd $PRGNAM-$VERSION
chown -R root:root .
find -L . \
- \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 -o -perm 511 \) \
- -exec chmod 755 {} \; -o \
- \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
- -exec chmod 644 {} \;
+ \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \
+ -o -perm 511 \) -exec chmod 755 {} \; -o \
+ \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
+ -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
# Fix libdir on x86_64
sed -i "s,\<lib\>,&$LIBDIRSUFFIX,g" Makefile.in pkgconfig/*.pc.in
@@ -79,6 +82,11 @@ make install DESTDIR=$PKG
# we don't want the static libs
rm -f $PKG/usr/lib$LIBDIRSUFFIX/*.a
+# Ryan P.C. McQuen <ryan.q@linux.com> reports that the .la
+# files break building audacity with VAMP=yes. In general I think
+# .la files break more than they fix.
+rm -f $PKG/usr/lib${LIBDIRSUFFIX}/*.la
+
mkdir -p $PKG/etc/profile.d/
cat << EOF > $PKG/etc/profile.d/vamp.csh
#!/bin/csh
@@ -90,7 +98,7 @@ export VAMP_PATH=/usr/lib${LIBDIRSUFFIX}/vamp
EOF
chmod 0755 $PKG/etc/profile.d/*
-find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
+find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION