diff options
Diffstat (limited to 'games/atari++/atari++.SlackBuild')
-rw-r--r-- | games/atari++/atari++.SlackBuild | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/games/atari++/atari++.SlackBuild b/games/atari++/atari++.SlackBuild index 499a62b569..b6d7f88b7e 100644 --- a/games/atari++/atari++.SlackBuild +++ b/games/atari++/atari++.SlackBuild @@ -1,20 +1,20 @@ -#!/bin/sh +#!/bin/bash # Slackware build script for atari++ # Written by B. Watson (yalhcru@gmail.com) +# Licensed under the WTFPL. See http://sam.zoy.org/wtfpl/ for details. + PRGNAM=atari++ -VERSION=${VERSION:-1.58} +VERSION=${VERSION:-1.60} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} -# Automatically determine the architecture we're building on: if [ -z "$ARCH" ]; then case "$( uname -m )" in i?86) ARCH=i486 ;; arm*) ARCH=arm ;; - # Unless $ARCH is already set, use uname -m for all other archs: *) ARCH=$( uname -m ) ;; esac fi |