diff options
author | dsomero <xgizzmo@slackbuilds.org> | 2011-03-23 18:16:23 -0400 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2011-03-24 19:23:15 -0500 |
commit | 988cfbb3d2c2a0cc385050d13668ba023f4a0d64 (patch) | |
tree | 487efa109a3c84f5deb3f3bee5a937fa84b21089 /network/3proxy/3proxy.SlackBuild | |
parent | 749e418f198f83618921c0b56a64f30494330b75 (diff) | |
download | slackbuilds-988cfbb3d2c2a0cc385050d13668ba023f4a0d64.tar.gz |
network/3proxy: Handle .new files correctly.
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'network/3proxy/3proxy.SlackBuild')
-rw-r--r-- | network/3proxy/3proxy.SlackBuild | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/network/3proxy/3proxy.SlackBuild b/network/3proxy/3proxy.SlackBuild index d71df94792..7f93f96034 100644 --- a/network/3proxy/3proxy.SlackBuild +++ b/network/3proxy/3proxy.SlackBuild @@ -90,10 +90,8 @@ chmod 0755 $PKG/etc/rc.d/rc.3proxy.new 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 \ @@ -102,6 +100,7 @@ cp -a \ mkdir -p $PKG/install cat $CWD/slack-desc > $PKG/install/slack-desc +cat $CWD/doinst.sh > $PKG/install/doinst.sh cd $PKG /sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} |