summaryrefslogtreecommitdiffstats
path: root/audio/calf/calf.SlackBuild
diff options
context:
space:
mode:
Diffstat (limited to 'audio/calf/calf.SlackBuild')
-rw-r--r--audio/calf/calf.SlackBuild11
1 files changed, 9 insertions, 2 deletions
diff --git a/audio/calf/calf.SlackBuild b/audio/calf/calf.SlackBuild
index fc453e6ce7..bd93e232b0 100644
--- a/audio/calf/calf.SlackBuild
+++ b/audio/calf/calf.SlackBuild
@@ -4,6 +4,10 @@
# Written by B. Watson (yalhcru@gmail.com)
+# 20170622 bkw:
+# - Update to latest git. It's been a long time since the last release.
+# - Actually make the SSE=yes option work (d'oh!)
+
# 20170301 bkw: use long-format github URL, no more $VERSION.tar.gz
# 20151106 bkw:
@@ -25,7 +29,7 @@
# - Added capability stuff.
PRGNAM=calf
-VERSION=${VERSION:-0.0.60}
+VERSION=${VERSION:-20170622.0873978}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
@@ -62,7 +66,7 @@ rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
cd $TMP
rm -rf $PRGNAM-$VERSION
-tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
+tar xvf $CWD/$PRGNAM-$VERSION.tar.?z
cd $PRGNAM-$VERSION
chown -R root:root .
find -L . \
@@ -91,6 +95,8 @@ case "${SSE:-auto}" in
|| SSEOPT="--disable-sse" ;;
esac
+echo "=== SSEOPT: $SSEOPT"
+
# For the slack-desc:
WITHSSE="without"
[ "$SSEOPT" = "--enable-sse" ] && WITHSSE="with"
@@ -98,6 +104,7 @@ WITHSSE="without"
CFLAGS="$SLKCFLAGS" \
CXXFLAGS="$SLKCFLAGS" \
./configure \
+ $SSEOPT \
--enable-experimental \
--prefix=/usr \
--libdir=/usr/lib${LIBDIRSUFFIX} \