diff options
Diffstat (limited to 'academic/chemtool/chemtool.SlackBuild')
-rw-r--r-- | academic/chemtool/chemtool.SlackBuild | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/academic/chemtool/chemtool.SlackBuild b/academic/chemtool/chemtool.SlackBuild index a65c7d73f728..c6b35eaa9b47 100644 --- a/academic/chemtool/chemtool.SlackBuild +++ b/academic/chemtool/chemtool.SlackBuild @@ -2,7 +2,7 @@ # Slackware build script for chemtool -# Copyright 2006 Robby Workman (http://rlworkman.net) +# Copyright 2006-2007 Robby Workman (http://rlworkman.net) # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -27,7 +27,7 @@ PRGNAM=chemtool VERSION=1.6.9 ARCH=${ARCH:-i486} -BUILD=${BUILD:-4} +BUILD=${BUILD:-1} TAG=${TAG:-_SBo} CWD=$(pwd) TMP=${TMP:-/tmp/SBo} @@ -71,8 +71,7 @@ install -D -m 0644 $CWD/$PRGNAM.desktop $PKG/usr/share/applications/$PRGNAM.desk install -D -m 0644 $CWD/chemtool.png $PKG/usr/share/pixmaps/chemtool.png mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a \ - examples/ ChangeLog INSTALL NEWS README TODO using_chemtool.html \ +cp -a examples/ ChangeLog INSTALL NEWS README TODO using_chemtool.html \ $PKG/usr/doc/$PRGNAM-$VERSION cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild @@ -80,7 +79,7 @@ if [ -d $PKG/usr/man ]; then ( cd $PKG/usr/man find . -type f -exec chmod 0644 {} \; find . -type f -exec gzip -9 {} \; - for i in $(find . -type l) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done + for i in $(find . -type l) ; do ln -s $(readlink $i).gz $i.gz ; rm $i ; done ) fi |