diff options
Diffstat (limited to 'audio/sooperlooper/sooperlooper.SlackBuild')
-rw-r--r-- | audio/sooperlooper/sooperlooper.SlackBuild | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/audio/sooperlooper/sooperlooper.SlackBuild b/audio/sooperlooper/sooperlooper.SlackBuild index 824189b395ac..154a42efad9c 100644 --- a/audio/sooperlooper/sooperlooper.SlackBuild +++ b/audio/sooperlooper/sooperlooper.SlackBuild @@ -4,10 +4,10 @@ # Written by B. Watson (yalhcru@gmail.com) -# Licensed under the WTFPL. See http://sam.zoy.org/wtfpl/ for details. +# Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details. PRGNAM=sooperlooper -VERSION=${VERSION:-1.6.18} +VERSION=${VERSION:-1.7.0} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -66,7 +66,12 @@ CXXFLAGS="$SLKCFLAGS" \ --build=$ARCH-slackware-linux make -make install-strip DESTDIR=$PKG +make install DESTDIR=$PKG + +# 'make install-strip' in 1.7.0 fails to install the slconsole and slregister +# binaries. Rather than plumb the murky depths of autotools, I'll just +# do it manually. +strip $PKG/usr/bin/* # Man pages, desktop, icon borrowed from Debian (thanks!) mkdir -p $PKG/usr/share/applications |