diff options
author | B. Watson <yalhcru@gmail.com> | 2014-11-02 09:00:09 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2014-11-02 09:00:09 +0700 |
commit | f4c04d4e2cf9a92932815d8e11cc490e70d263ec (patch) | |
tree | 0472a6e013b33b77f3922c711ae30ca3d72c5ed8 /games/freedoom/freedoom.SlackBuild | |
parent | b05c86ede0197ecd4101857fc8811d6dec9b5f05 (diff) | |
download | slackbuilds-f4c04d4e2cf9a92932815d8e11cc490e70d263ec.tar.gz |
games/freedoom: Updated for version 0.9.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'games/freedoom/freedoom.SlackBuild')
-rw-r--r-- | games/freedoom/freedoom.SlackBuild | 23 |
1 files changed, 13 insertions, 10 deletions
diff --git a/games/freedoom/freedoom.SlackBuild b/games/freedoom/freedoom.SlackBuild index 6d2b5711a4..b94afae240 100644 --- a/games/freedoom/freedoom.SlackBuild +++ b/games/freedoom/freedoom.SlackBuild @@ -7,7 +7,7 @@ # Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details. PRGNAM=freedoom -VERSION=${VERSION:-0.8} +VERSION=${VERSION:-0.9} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -29,27 +29,30 @@ cd $TMP/$PRGNAM-$VERSION mkdir -p $PKG/usr/share/games/doom $PKG/usr/doc/$PRGNAM-$VERSION -for zipfile in $PRGNAM-iwad $PRGNAM-ultimate freedm; do - unzip $CWD/$zipfile-v$VERSION.zip - cd $zipfile-v$VERSION +for zipfile in $PRGNAM freedm; do + unzip $CWD/$zipfile-$VERSION.zip + cd $zipfile-$VERSION chown -R root:root . chmod 644 * cp *.wad $PKG/usr/share/games/doom cd - done -# The docs are identical in all 3 zipfiles, only keep one set. -cd $PRGNAM-iwad-v$VERSION -cp COPYING CREDITS *.html $PKG/usr/doc/$PRGNAM-$VERSION +# The docs are identical in both zipfiles, only keep one set. +cd $PRGNAM-$VERSION +cp -a COPYING CREDITS *.html $PKG/usr/doc/$PRGNAM-$VERSION cd - -# Rename to avoid conflicts with id software's doom.wad and doom2.wad. +# Upstream recently renamed their wad files. The new names are less +# confusing (freedoom1.wad is Doom I, freedoom2.wad is Doom II). For now, +# we'll make symlinks to the old names, for compatibility with engines that +# don't yet know about the new names. # zdoom will correctly find the files with these names, according to # http://remilia.zdoom.org/wiki/IWAD cd $PKG/usr/share/games/doom -mv doom.wad freedoomu.wad -mv doom2.wad freedoom.wad +ln -s freedoom1.wad freedoomu.wad +ln -s freedoom2.wad freedoom.wad cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild cat $CWD/README > $PKG/usr/doc/$PRGNAM-$VERSION/README |