mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-04 20:29:09 +01:00
games/z26: Updated for version 2.13
This commit is contained in:
parent
b2823db3e1
commit
14ccf40e41
3 changed files with 14 additions and 3 deletions
|
@ -3,4 +3,10 @@ z26 (an Atari 2600 emulator)
|
|||
Z26 is one of the best emulators for the Atari 2600.
|
||||
The author reports that the graphics part of the emulator
|
||||
is nearing perfection to a point that there's little more
|
||||
to fix.
|
||||
to fix.
|
||||
|
||||
Note to 64-bit users: z26 is mostly written in 32-bit x86 assembly,
|
||||
so it can't be built for x86_64. However, if you build a z26 package
|
||||
on a 32-bit system, and install it on a 64-bit system that also has
|
||||
alienBOB's or Fred Emmott's 32-bit compatibility packages (specifically,
|
||||
a 32-bit sdl package is required), it should run just fine.
|
||||
|
|
|
@ -29,6 +29,9 @@ if [ "$ARCH" = "i486" ]; then
|
|||
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
|
||||
elif [ "$ARCH" = "i686" ]; then
|
||||
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
||||
elif [ "$ARCH" = "x86_64" ]; then
|
||||
echo "Can't build on x86_64, sorry"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
set -e
|
||||
|
@ -62,4 +65,4 @@ mkdir -p $PKG/install
|
|||
cat $CWD/slack-desc > $PKG/install/slack-desc
|
||||
|
||||
cd $PKG
|
||||
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz
|
||||
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
|
||||
|
|
|
@ -3,6 +3,8 @@ VERSION="2.13"
|
|||
HOMEPAGE="http://www.whimsey.com"
|
||||
DOWNLOAD="http://www.whimsey.com/z26/z26v213.tar.gz"
|
||||
MD5SUM="0b0b9b42f203f6defca74a85f071f7c8"
|
||||
DOWNLOAD_x86_64="UNSUPPORTED"
|
||||
MD5SUM_x86_64=""
|
||||
MAINTAINER="B. Watson"
|
||||
EMAIL="yalhcru@gmail.com"
|
||||
APPROVED="dsomero"
|
||||
APPROVED="rworkman"
|
||||
|
|
Loading…
Reference in a new issue