diff options
author | Michales Michaloudes <korgie@gmail.com> | 2011-06-05 12:10:13 +0200 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2011-06-13 01:34:12 -0400 |
commit | 6c7dd0cc6b1976cd55505b90f5953d578116f2f6 (patch) | |
tree | e84cbbf2939d1919667a68c1afa6099e4ec858d6 /audio/qsynth/qsynth.SlackBuild | |
parent | ba0884a96f2e9bcecfd659fdaf311900478f178c (diff) |
audio/qsynth: Updated for version 0.3.6
Signed-off-by: Heinz Wiesinger <pprkut@slackbuilds.org>
Diffstat (limited to 'audio/qsynth/qsynth.SlackBuild')
-rw-r--r-- | audio/qsynth/qsynth.SlackBuild | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/audio/qsynth/qsynth.SlackBuild b/audio/qsynth/qsynth.SlackBuild index e0a31b59e8ba..b9f4e7ba2029 100644 --- a/audio/qsynth/qsynth.SlackBuild +++ b/audio/qsynth/qsynth.SlackBuild @@ -3,16 +3,14 @@ # Written by Michales Michaloudes korgie@gmail.com PRGNAM=qsynth -VERSION=${VERSION:-0.3.4} +VERSION=${VERSION:-0.3.6} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} -# Automatically determine the architecture we're building on: if [ -z "$ARCH" ]; then case "$( uname -m )" in i?86) ARCH=i486 ;; arm*) ARCH=arm ;; - # Unless $ARCH is already set, use uname -m for all other archs: *) ARCH=$( uname -m ) ;; esac fi @@ -65,6 +63,9 @@ CXXFLAGS="$SLKCFLAGS" \ make make install DESTDIR=$PKG +# remove empty man-page directory +rm -rf $PKG/usr/share/man + find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true |