diff options
author | Robby Workman <rw@rlworkman.net> | 2010-05-12 17:41:03 +0200 |
---|---|---|
committer | Michiel van Wessem <michiel@slackbuilds.org> | 2010-05-12 17:41:03 +0200 |
commit | bf0c111ba17de7e486a23ddabd54d3aaa1862834 (patch) | |
tree | d349e8726d8f8a7224dccd469d4b5c6dd518c280 /libraries/libburn | |
parent | b2d19098d41f9484a43e5d9a2afe05b7f5d05d07 (diff) | |
download | slackbuilds-bf0c111ba17de7e486a23ddabd54d3aaa1862834.tar.gz |
libraries/libburn: Updated for version 0.6.2
Diffstat (limited to 'libraries/libburn')
-rw-r--r-- | libraries/libburn/libburn.SlackBuild | 22 | ||||
-rw-r--r-- | libraries/libburn/libburn.info | 8 |
2 files changed, 19 insertions, 11 deletions
diff --git a/libraries/libburn/libburn.SlackBuild b/libraries/libburn/libburn.SlackBuild index a6c2b817fc..c668c2cba2 100644 --- a/libraries/libburn/libburn.SlackBuild +++ b/libraries/libburn/libburn.SlackBuild @@ -2,7 +2,7 @@ # Slackware build script for libburn -# Copyright 2008 Robby Workman, Northport, Alabama, USA +# Copyright 2008,2009 Robby Workman, Northport, Alabama, USA # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -23,7 +23,7 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=libburn -VERSION=0.5.4 +VERSION=0.6.2 ARCH=${ARCH:-i486} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -64,14 +64,22 @@ CXXFLAGS="$SLKCFLAGS" \ make make install DESTDIR=$PKG -find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF | \ - cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true +( 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 +) -gzip -9 $PKG/usr/man/man?/*.? +( 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 AUTHORS CONTRIBUTORS COPYING COPYRIGHT ChangeLog INSTALL NEWS README \ - $PKG/usr/doc/$PRGNAM-$VERSION +cp -a \ + AUTHORS CONTRIBUTORS COPYING COPYRIGHT ChangeLog INSTALL NEWS README \ + $PKG/usr/doc/$PRGNAM-$VERSION cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild mkdir -p $PKG/install diff --git a/libraries/libburn/libburn.info b/libraries/libburn/libburn.info index 5e9f2e776d..312c693ec6 100644 --- a/libraries/libburn/libburn.info +++ b/libraries/libburn/libburn.info @@ -1,8 +1,8 @@ PRGNAM="libburn" -VERSION="0.5.4" +VERSION="0.6.2" HOMEPAGE="http://libburnia-project.org/wiki/Libburn" -DOWNLOAD="http://files.libburnia-project.org/releases/libburn-0.5.4.pl00.tar.gz" -MD5SUM="45fa9ff334df8fe3527c2b05ac50b61f" +DOWNLOAD="http://files.libburnia-project.org/releases/libburn-0.6.2.pl00.tar.gz" +MD5SUM="fdb017d5ffcb8dda0e5678b663992903" MAINTAINER="Robby Workman" EMAIL="rw@rlworkman.net" -APPROVED="dsomero" +APPROVED="michiel" |