diff options
author | B. Watson <yalhcru@gmail.com> | 2010-05-13 00:27:29 +0200 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-13 00:27:29 +0200 |
commit | e627ec8492b6a5c3fd13f1a16f1db8a50deed6a7 (patch) | |
tree | b3e1682dd8b97b24074abd6c3910b639d54bb9cc /games/vectoroids/vectoroids.SlackBuild | |
parent | e8f9e1aefed72710a3a031e5716d6135a89dac0b (diff) | |
download | slackbuilds-e627ec8492b6a5c3fd13f1a16f1db8a50deed6a7.tar.gz |
games/vectoroids: Updated for version 1.1.0
Diffstat (limited to 'games/vectoroids/vectoroids.SlackBuild')
-rw-r--r-- | games/vectoroids/vectoroids.SlackBuild | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/games/vectoroids/vectoroids.SlackBuild b/games/vectoroids/vectoroids.SlackBuild index ba8dac8040..6eda9c2f50 100644 --- a/games/vectoroids/vectoroids.SlackBuild +++ b/games/vectoroids/vectoroids.SlackBuild @@ -17,10 +17,13 @@ OUTPUT=${OUTPUT:-/tmp} if [ "$ARCH" = "i486" ]; then SLKCFLAGS="-O2 -march=i486 -mtune=i686" + LIBDIRSUFFIX="" elif [ "$ARCH" = "i686" ]; then SLKCFLAGS="-O2 -march=i686 -mtune=i686" + LIBDIRSUFFIX="" elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" + LIBDIRSUFFIX="64" fi set -e @@ -56,4 +59,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} |