diff options
author | Ryan P.C. McQuen <ryan.q@linux.com> | 2016-12-06 00:02:54 -0800 |
---|---|---|
committer | David Spencer <idlemoor@slackbuilds.org> | 2016-12-10 00:57:42 +0000 |
commit | 45216639ac11012b22a19abaf0c8007ce894cfc4 (patch) | |
tree | 384b678ee5543746d57c9970d93aacb84da864e4 /games/lutris/lutris.SlackBuild | |
parent | 154463eedcdc49f6d551f8ff2f4d42daa5be3d42 (diff) |
games/lutris: Updated for version 0.4.3.
Signed-off-by: Ryan P.C. McQuen <ryan.q@linux.com>
Diffstat (limited to 'games/lutris/lutris.SlackBuild')
-rw-r--r-- | games/lutris/lutris.SlackBuild | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/games/lutris/lutris.SlackBuild b/games/lutris/lutris.SlackBuild index 481dc2fc8223f..19ca36dd1f653 100644 --- a/games/lutris/lutris.SlackBuild +++ b/games/lutris/lutris.SlackBuild @@ -23,13 +23,13 @@ # <https://www.gnu.org/licenses/>. PRGNAM=lutris -VERSION=${VERSION:-0.3.7.5} +VERSION=${VERSION:-0.4.3} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} if [ -z "$ARCH" ]; then case "$( uname -m )" in - i?86) ARCH=i486 ;; + i?86) ARCH=i586 ;; arm*) ARCH=arm ;; *) ARCH=$( uname -m ) ;; esac @@ -56,13 +56,13 @@ find -L . \ \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; -python setup.py install --root $PKG +python3 setup.py install --root $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 mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a AUTHORS CHANGELOG COPYING INSTALL.rst README.rst $PKG/usr/doc/$PRGNAM-$VERSION +cp -a AUTHORS CHANGELOG LICENSE INSTALL.rst README.rst $PKG/usr/doc/$PRGNAM-$VERSION cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild find $PKG/usr/doc -type f -exec chmod 0644 {} \; |