diff options
author | B. Watson <yalhcru@gmail.com> | 2020-04-15 19:34:30 -0400 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2020-04-19 10:52:25 +0700 |
commit | 67898849d2bb03132ad004ca94baef46e0819435 (patch) | |
tree | ab2f2ecc0e53686bf1b23915c1e7ea4f965897bd /development/love/love.SlackBuild | |
parent | 676df5dc8337e0edad562a966f0777a36fc570ce (diff) |
development/love: Updated for version 11.3, new maintainer.
Signed-off-by: B. Watson <yalhcru@gmail.com>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'development/love/love.SlackBuild')
-rw-r--r-- | development/love/love.SlackBuild | 25 |
1 files changed, 12 insertions, 13 deletions
diff --git a/development/love/love.SlackBuild b/development/love/love.SlackBuild index b16066ae9ea53..5a27d64858d44 100644 --- a/development/love/love.SlackBuild +++ b/development/love/love.SlackBuild @@ -3,9 +3,16 @@ # Slackware build script for LÖVE # Written by Dugan Chen (thedoogster [at] gmail [dot] com) +# Now maintained by B. Watson <yalhcru@gmail.com>. +# Original version had no license; modified version licensed under the +# WTFPL. See http://www.wtfpl.net/txt/copying/ for details. + +# 20200415 bkw: +# - take over maintenance +# - update for v11.3 PRGNAM=love -VERSION=${VERSION:-11.1} +VERSION=${VERSION:-11.3} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -45,11 +52,8 @@ rm -rf $PRGNAM-$VERSION tar xvf $CWD/$PRGNAM-$VERSION-linux-src.tar.gz cd $PRGNAM-$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 640 -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 {} \+ CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ @@ -64,13 +68,8 @@ CXXFLAGS="$SLKCFLAGS" \ --build=$ARCH-slackware-linux make -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 +make install-strip DESTDIR=$PKG +gzip $PKG/usr/man/man1/$PRGNAM.1 mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION cp -a changes.txt license.txt readme.md $PKG/usr/doc/$PRGNAM-$VERSION |