diff options
author | B. Watson <yalhcru@gmail.com> | 2020-01-03 17:18:10 -0500 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2020-01-12 08:47:39 +0700 |
commit | 8ee802bc956e61203dbae463e2ef8d70562b7450 (patch) | |
tree | 0ca6499879112756fa893aab31c47a66eb403edc /games | |
parent | e94f7025ec72d5ecef100df32c50064a2ef8583c (diff) |
games/dgen: Remove template comments from script.
Signed-off-by: B. Watson <yalhcru@gmail.com>
Diffstat (limited to 'games')
-rw-r--r-- | games/dgen/dgen.SlackBuild | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/games/dgen/dgen.SlackBuild b/games/dgen/dgen.SlackBuild index ef289e785085..1dfad4f22f92 100644 --- a/games/dgen/dgen.SlackBuild +++ b/games/dgen/dgen.SlackBuild @@ -84,15 +84,12 @@ CXXFLAGS="$SLKCFLAGS" \ make make install DESTDIR=$PKG -# Strip binaries and libraries find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true -# Compress man pages 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 -# Copy program documentation into the package mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION cp -a AUTHORS BUGS COPYING ChangeLog README $PKG/usr/doc/$PRGNAM-$VERSION cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild |