diff options
author | Ron F. DeMoss <rfdemoss{at}gmail{dot}com> | 2011-08-29 08:31:33 -0300 |
---|---|---|
committer | Niels Horn <niels.horn@slackbuilds.org> | 2011-08-29 08:31:33 -0300 |
commit | 24d0fae8fa4f7715c628dfafbaaa11604da997df (patch) | |
tree | 57ac02d4f4829072427c364a78f3d86a9e4a6412 /audio/gnomad2/gnomad2.SlackBuild | |
parent | be129f1a3c687a3fce14aeae552af2be4bce9a85 (diff) | |
download | slackbuilds-24d0fae8fa4f7715c628dfafbaaa11604da997df.tar.gz |
audio/gnomad2: Updated for version 2.9.6.
Signed-off-by: Niels Horn <niels.horn@slackbuilds.org>
Diffstat (limited to 'audio/gnomad2/gnomad2.SlackBuild')
-rw-r--r-- | audio/gnomad2/gnomad2.SlackBuild | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/audio/gnomad2/gnomad2.SlackBuild b/audio/gnomad2/gnomad2.SlackBuild index ac2a63ee10..3e24d4ef16 100644 --- a/audio/gnomad2/gnomad2.SlackBuild +++ b/audio/gnomad2/gnomad2.SlackBuild @@ -1,19 +1,17 @@ #!/bin/sh # Slackware build script for Gnomad2 -# Build script by Ron F. DeMoss, 2009-01-23 +# Build script by Ron F. DeMoss, 2011-08-11 PRGNAM=gnomad2 -VERSION=${VERSION:-2.9.4} +VERSION=${VERSION:-2.9.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 @@ -60,10 +58,8 @@ CFLAGS="$SLKCFLAGS" \ make make install-strip DESTDIR=$PKG -( cd $PKG/usr/man - find . -type f -exec gzip -9 {} \; - for i in $( find . -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done -) +find $PKG/usr/man -type f -exec gzip -9 {} \; +for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION cp -a \ |