diff options
author | CRTS <crts [at] gmx [dot] net> | 2019-06-29 08:06:06 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2019-06-29 08:06:06 +0700 |
commit | d3091069d6085b9d49716340481fff6e30f3f925 (patch) | |
tree | ddea2fcf3f0ac81d0e1740ef0d383bde6e1bf837 /games | |
parent | 1a24bd0bc853406e0b0757d190e6eab76f8410cb (diff) | |
download | slackbuilds-d3091069d6085b9d49716340481fff6e30f3f925.tar.gz |
games/dfarc: Added (frontend for freedink).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'games')
-rw-r--r-- | games/dfarc/dfarc.SlackBuild | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/games/dfarc/dfarc.SlackBuild b/games/dfarc/dfarc.SlackBuild index bff706b975..fc30a11a30 100644 --- a/games/dfarc/dfarc.SlackBuild +++ b/games/dfarc/dfarc.SlackBuild @@ -101,6 +101,9 @@ make install DESTDIR=$PKG 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 +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 ABOUT-NLS AUTHORS BUILD COPYING COPYING.DFArc COPYING.DFArc-2.0 ChangeLog NEWS README* \ TRANSLATIONS.txt $PKG/usr/doc/$PRGNAM-$VERSION |