diff options
author | Matteo Bernardini <ponce@slackbuilds.org> | 2016-06-27 23:27:39 +0200 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2016-06-27 20:38:29 -0500 |
commit | 7b751948abda3ba4c03d148719e88b5b4af66a50 (patch) | |
tree | a68eb5427757576318f7d46c595951e51914c563 /games | |
parent | dff1fb294577300dbcffb20a18d22f98a6ba219e (diff) |
games/dolphin-emu: Updated for version 5.0.
...to use a release and not a snapshot.
Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
Diffstat (limited to 'games')
-rw-r--r-- | games/dolphin-emu/dolphin-emu.1 | 41 | ||||
-rw-r--r-- | games/dolphin-emu/dolphin-emu.SlackBuild | 7 | ||||
-rw-r--r-- | games/dolphin-emu/dolphin-emu.info | 6 |
3 files changed, 9 insertions, 45 deletions
diff --git a/games/dolphin-emu/dolphin-emu.1 b/games/dolphin-emu/dolphin-emu.1 deleted file mode 100644 index 43f2844c2213..000000000000 --- a/games/dolphin-emu/dolphin-emu.1 +++ /dev/null @@ -1,41 +0,0 @@ -.TH DOLPHIN-EMU 1 "December 10, 2010" -.SH NAME -dolphin-emu \- A Gamecube, Wii and Triforce (the arcade machine based on the -Gamecube) emulator. -.SH SYNOPSIS -.B dolphin-emu -.RI [ options ] -.SH DESCRIPTION -.B dolphin-emu -is a Gamecube, Wii and Triforce (the arcade machine based on the -Gamecube) emulator. -.P -Gamecube compatibility is okay - lots of games work, many games don't work. -.P -Wii compatibility is also good - a lot of games do work. Wii emulation -generally requires a bit more computing power than Gamecube emulation, though. -.P -Triforce compatibility is not really known yet, but at least one game runs, -with minor glitches. -.SH OPTIONS -.TP -.BI "\-A, \-\-audio-plugin="plugin -Specify an audio plugin -.TP -.B \-b, \-\-batch -Exit application when emulator closes -.TP -.B \-d, \-\-debugger -Open the debugger -.TP -.BI "\-e, \-\-exec="file -Loads the specified file (DOL, ELF, WAD, GCM, ISO) -.TP -.B \-l, \-\-logger -Open the logger -.TP -.BI "\-V, \-\-video-plugin="plugin -Specify a video plugin -.SH AUTHOR -This manual page was written by Glenn Rice <glennricster@gmail.com>, -for the Debian system (but may be used by others). diff --git a/games/dolphin-emu/dolphin-emu.SlackBuild b/games/dolphin-emu/dolphin-emu.SlackBuild index b67c59a03fa5..27e7a42ad2ca 100644 --- a/games/dolphin-emu/dolphin-emu.SlackBuild +++ b/games/dolphin-emu/dolphin-emu.SlackBuild @@ -23,7 +23,7 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=dolphin-emu -VERSION=${VERSION:-20160206_76d614e} +VERSION=${VERSION:-5.0} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -69,6 +69,8 @@ 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 {} \; +sed -i "s|share/man|man|" CMakeLists.txt + mkdir build cd build cmake -G "Unix Makefiles" \ @@ -87,6 +89,9 @@ cd - 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 + for i in 16 32 48 64 128; do convert Installer/Dolphin.ico -resize ${i}x${i}! $PRGNAM-${i}.png install -D -m 0644 $PRGNAM-${i}-3.png \ diff --git a/games/dolphin-emu/dolphin-emu.info b/games/dolphin-emu/dolphin-emu.info index 212337f65c15..32b34ab3ef29 100644 --- a/games/dolphin-emu/dolphin-emu.info +++ b/games/dolphin-emu/dolphin-emu.info @@ -1,10 +1,10 @@ PRGNAM="dolphin-emu" -VERSION="20160206_76d614e" +VERSION="5.0" HOMEPAGE="http://dolphin-emu.org/" DOWNLOAD="UNSUPPORTED" MD5SUM="" -DOWNLOAD_x86_64="http://ponce.cc/slackware/sources/repo/dolphin-20160206_76d614e.tar.xz" -MD5SUM_x86_64="444fce8f80ce1d594f428a2c1b823050" +DOWNLOAD_x86_64="https://github.com/dolphin-emu/dolphin/archive/5.0.tar.gz" +MD5SUM_x86_64="ed94272956adbec690808f6e4d8ff065" REQUIRES="nvidia-cg-toolkit" MAINTAINER="Larry Hajali" EMAIL="larryhaja[at]gmail[dot]com" |