diff options
author | Larry Hajali <larryhaja@gmail.com> | 2014-11-12 08:00:31 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2014-11-12 08:19:54 +0700 |
commit | a548727b296be8f78a21dea7c3c313c72d45bfe1 (patch) | |
tree | 268a85da1b4fed9ab070e6107c37974c7018f276 /games/dolphin-emu/dolphin-emu.SlackBuild | |
parent | 24b74620acc47456dac02e212b4c7eea386cd389 (diff) | |
download | slackbuilds-a548727b296be8f78a21dea7c3c313c72d45bfe1.tar.gz |
games/dolphin-emu: Update DEPS and README.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'games/dolphin-emu/dolphin-emu.SlackBuild')
-rw-r--r-- | games/dolphin-emu/dolphin-emu.SlackBuild | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/games/dolphin-emu/dolphin-emu.SlackBuild b/games/dolphin-emu/dolphin-emu.SlackBuild index ec37ed1a0d..c5c4f0c005 100644 --- a/games/dolphin-emu/dolphin-emu.SlackBuild +++ b/games/dolphin-emu/dolphin-emu.SlackBuild @@ -2,7 +2,7 @@ # Slackware build script for dolphin-emu -# Copyright 2013 Larry Hajali <larryhaja[at]gmail[dot]com> +# Copyright 2013-2014 Larry Hajali <larryhaja[at]gmail[dot]com> # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -24,7 +24,7 @@ PRGNAM=dolphin-emu VERSION=${VERSION:-4.0.2} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} if [ -z "$ARCH" ]; then @@ -64,10 +64,12 @@ tar xvf $CWD/${PRGNAM/-*/}-$VERSION.tar.gz || tar xvf $CWD/$VERSION.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 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ - -exec chmod 644 {} \; + \( -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 {} \; + +patch -p1 < $CWD/dolphin-emu-4.0-gtk3.patch mkdir build cd build |