diff options
-rw-r--r-- | development/cppunit/cppunit.SlackBuild | 11 | ||||
-rw-r--r-- | development/cppunit/cppunit.info | 2 |
2 files changed, 5 insertions, 8 deletions
diff --git a/development/cppunit/cppunit.SlackBuild b/development/cppunit/cppunit.SlackBuild index 421083256446..523a97cd7683 100644 --- a/development/cppunit/cppunit.SlackBuild +++ b/development/cppunit/cppunit.SlackBuild @@ -2,11 +2,11 @@ # Slackware build script for cppunit -# Written by Luís Henrique <lmello.009@gmail.com> +# Written by Luis Henrique <lmello.009@gmail.com> PRGNAM=cppunit VERSION=${VERSION:-1.12.1} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} # Automatically determine the architecture we're building on: @@ -73,11 +73,8 @@ 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/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 \ diff --git a/development/cppunit/cppunit.info b/development/cppunit/cppunit.info index 4c7b7fb38125..9e56e45e1ada 100644 --- a/development/cppunit/cppunit.info +++ b/development/cppunit/cppunit.info @@ -7,4 +7,4 @@ DOWNLOAD_x86_64="" MD5SUM_x86_64="" MAINTAINER="Luís Henrique" EMAIL="lmello.009@gmail.com" -APPROVED="rworkman" +APPROVED="dsomero" |