diff options
author | B. Watson <yalhcru@gmail.com> | 2022-04-07 14:37:54 -0400 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2022-04-09 15:45:08 +0700 |
commit | 9f4037b6cfdc417cd6418367f378ce3d12fd125d (patch) | |
tree | 3a883efcc288bc268a50ed0bccd8941f028c2f5b | |
parent | fe93df62e8fd546ff0519041eefebca14adeb593 (diff) |
games/atari800: Strip binary.
Signed-off-by: B. Watson <yalhcru@gmail.com>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
-rw-r--r-- | games/atari800/atari800.SlackBuild | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/games/atari800/atari800.SlackBuild b/games/atari800/atari800.SlackBuild index df5506c7109a..196b93db3ed8 100644 --- a/games/atari800/atari800.SlackBuild +++ b/games/atari800/atari800.SlackBuild @@ -6,6 +6,8 @@ # Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details. +# 20220407 bkw: BUILD=2, strip binary. + # 20200303 bkw: # - update for 4.2.0, can still build 3.1.0, 4.0.0, 4.1.0. # - move binary to /usr/games, man page to section 6. @@ -24,7 +26,7 @@ cd $(dirname $0) ; CWD=$(pwd) PRGNAM=atari800 VERSION=${VERSION:-4.2.0} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -120,7 +122,7 @@ CXXFLAGS="$SLKCFLAGS" \ # only sound actually work. Must determine WTF's going on here. make -make install DOC_DIR=$DOCDIR MAN_DIR=/usr/man/man1 DESTDIR=$PKG +make install-strip DOC_DIR=$DOCDIR MAN_DIR=/usr/man/man1 DESTDIR=$PKG # 20200303 bkw: move man page to section 6 (games) mkdir -p $PKG/usr/man/man6 |