diff options
author | Roberto Neri <rneri@libero.it> | 2010-05-12 17:37:11 +0200 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-05-12 17:37:11 +0200 |
commit | c1561ef68d924886457cd01669b2ae07ba3c90b3 (patch) | |
tree | 5487c2b66bbd27db242e10624d2b9488dfe90aa6 /audio/mp3splt/mp3splt.SlackBuild | |
parent | d7baa66e84df13cbc2fda1af3986dcfa77f3ac9f (diff) |
audio/mp3splt: Updated for version 2.2.3
Diffstat (limited to 'audio/mp3splt/mp3splt.SlackBuild')
-rw-r--r-- | audio/mp3splt/mp3splt.SlackBuild | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/audio/mp3splt/mp3splt.SlackBuild b/audio/mp3splt/mp3splt.SlackBuild index 6cefee3cf68af..18f2ea62b9966 100644 --- a/audio/mp3splt/mp3splt.SlackBuild +++ b/audio/mp3splt/mp3splt.SlackBuild @@ -5,7 +5,7 @@ # Written by Roberto Neri <rneri@libero.it> PRGNAM=mp3splt -VERSION=${VERSION:-2.2.1} +VERSION=${VERSION:-2.2.3} ARCH=${ARCH:-i486} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -42,14 +42,17 @@ CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ ./configure \ --prefix=/usr \ - --mandir=/usr/man + --mandir=/usr/man \ + --build=$ARCH-slackware-linux make make install DESTDIR=$PKG ( cd $PKG - find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true - find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null + find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | \ + xargs strip --strip-unneeded 2> /dev/null || true + find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | \ + xargs strip --strip-unneeded 2> /dev/null ) ( cd $PKG/usr/man |