diff options
author | Nishant Limbachia <nishant@mnspace.net> | 2010-04-18 10:14:10 -0500 |
---|---|---|
committer | Erik Hanson <erik@slackbuilds.org> | 2010-05-15 10:38:22 +0200 |
commit | 090bc010fb5a62e6c93105973ee4e5bf01f289cd (patch) | |
tree | 85be06e9ca7e61c8c66b45c1d043a11ae1daf67b /system/safecopy/safecopy.SlackBuild | |
parent | f44844ef95b185d2e142cbec56e770cef05c47b0 (diff) | |
download | slackbuilds-090bc010fb5a62e6c93105973ee4e5bf01f289cd.tar.gz |
system/safecopy: Build bump, script cleanup.
Use install-strip now.
Diffstat (limited to 'system/safecopy/safecopy.SlackBuild')
-rw-r--r-- | system/safecopy/safecopy.SlackBuild | 26 |
1 files changed, 9 insertions, 17 deletions
diff --git a/system/safecopy/safecopy.SlackBuild b/system/safecopy/safecopy.SlackBuild index 3ac7366ed7..0680c3ed25 100644 --- a/system/safecopy/safecopy.SlackBuild +++ b/system/safecopy/safecopy.SlackBuild @@ -3,13 +3,13 @@ # Slackware Package Build Script for safecopy # Home Page http://safecopy.sourceforge.net/ -# Copyright (c) 2009, Nishant Limbachia, Hoffman Est, IL, USA (nishant@mnspace.net) +# Copyright (c) 2009-2010, Nishant Limbachia, Hoffman Estates, IL, USA (nishant _AT_ mnspace _DOT_ net) # All rights reserved. # -# Redistribution and use of this script, with or without modification, is +# Redistribution and use of this script, with or without modification, is # permitted provided that the following conditions are met: # -# 1. Redistributions of script must retain the above copyright notice, +# 1. Redistributions of script must retain the above copyright notice, # this list of conditions and the following disclaimer. # # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS @@ -27,7 +27,7 @@ PRGNAM=safecopy VERSION=1.6 ARCH=${ARCH:-i486} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} CWD=$(pwd) @@ -68,27 +68,19 @@ CFLAGS="$SLKCFLAGS" \ --localstatedir=/var \ --mandir=/usr/man \ --infodir=/usr/info - -make -make install DESTDIR=$PKG -### strip binaries -( 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 -) +make +make install-strip DESTDIR=$PKG ### compress man pages ( 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 -) +) mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a ChangeLog COPYING AUTHORS README INSTALL NEWS specification.txt \ - $PKG/usr/doc/$PRGNAM-$VERSION +cp -a ChangeLog COPYING AUTHORS README INSTALL NEWS \ +specification.txt $PKG/usr/doc/$PRGNAM-$VERSION cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild mkdir -p $PKG/install |