diff options
Diffstat (limited to 'games/stella/stella.SlackBuild')
-rw-r--r-- | games/stella/stella.SlackBuild | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/games/stella/stella.SlackBuild b/games/stella/stella.SlackBuild index 4c4f6cc0f8..92b51384fe 100644 --- a/games/stella/stella.SlackBuild +++ b/games/stella/stella.SlackBuild @@ -8,6 +8,10 @@ # Now maintained by B. Watson <yalhcru@gmail.com> +# 20200327 bkw: +# - update for 6.1. +# - use clang++, our g++ is too old. + # 20191201 bkw: # - update for 6.0.2. # - replace my outdated man page with the up-to-date one from Debian. @@ -41,7 +45,7 @@ # - StartupNotify=false in .desktop PRGNAM=stella -VERSION=${VERSION:-6.0.2} +VERSION=${VERSION:-6.1} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -87,7 +91,7 @@ find -L . -perm /111 -a \! -perm 755 -a -exec chmod 755 {} \+ -o \ # because we have 7.x. #sed -i 's,\[5-6\],[5-9],g' configure -CFLAGS="$SLKCFLAGS" \ +CC="clang" CXX="clang++" CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ ./configure \ --prefix=/usr \ |