diff options
Diffstat (limited to 'games')
-rw-r--r-- | games/connectagram/connectagram.SlackBuild | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/games/connectagram/connectagram.SlackBuild b/games/connectagram/connectagram.SlackBuild index 608eb11989c15..7bd504f32a15d 100644 --- a/games/connectagram/connectagram.SlackBuild +++ b/games/connectagram/connectagram.SlackBuild @@ -81,6 +81,13 @@ CFLAGS="$SLKCFLAGS" make make install cd .. +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 + +mv $PKG/usr/share/man $PKG/usr/man +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 ChangeLog COPYING CREDITS INSTALL \ $PKG/usr/doc/$PRGNAM-$VERSION/ |