diff options
author | B. Watson <yalhcru@gmail.com> | 2019-12-10 00:40:08 -0500 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2019-12-15 17:06:26 +0700 |
commit | e93fccb3630a8b87a0820cda2401db4c0766a373 (patch) | |
tree | 4b406c0d3e7120fab6f01ef5193feb3411bc8dfe /games/alephone/alephone.SlackBuild | |
parent | ff9a3454ef0d7f28c19f363f2dfb93cea6d4dc6c (diff) |
games/alephone: Updated for version 20190331.
Signed-off-by: B. Watson <yalhcru@gmail.com>
Diffstat (limited to 'games/alephone/alephone.SlackBuild')
-rw-r--r-- | games/alephone/alephone.SlackBuild | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/games/alephone/alephone.SlackBuild b/games/alephone/alephone.SlackBuild index bcbd1d4ef8c80..24f2781fd15fd 100644 --- a/games/alephone/alephone.SlackBuild +++ b/games/alephone/alephone.SlackBuild @@ -6,14 +6,15 @@ # Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details. +# 20191209 bkw: update for 20190331 # 20150915 bkw: # - update for 20150620 release # - ffmpeg patches no longer needed # - move binary to /usr/games PRGNAM=alephone -VERSION=${VERSION:-20150620} -BUILD=${BUILD:-2} +VERSION=${VERSION:-20190331} +BUILD=${BUILD:-1} TAG=${TAG:-_SBo} if [ -z "$ARCH" ]; then @@ -54,15 +55,12 @@ rm -rf $SRCNAM-$VERSION tar xvf $CWD/$SRCNAM-$VERSION.tar.bz2 cd $SRCNAM-$VERSION chown -R root:root . -find -L . \ - \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 -o -perm 511 \) \ - -exec chmod 755 {} \; -o \ - \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ - -exec chmod 644 {} \; +find -L . -perm /111 -a \! -perm 755 -a -exec chmod 755 {} \+ -o \ + \! -perm /111 -a \! -perm 644 -a -exec chmod 644 {} \+ [ "${FFMPEG:-yes}" = "no" ] && EXTRAOPT=--without-ffmpeg -patch -Np1 < $CWD/ffmpeg3.patch +#patch -Np1 < $CWD/ffmpeg3.patch CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS -fpermissive" \ |