summaryrefslogtreecommitdiffstats
path: root/gmtk/build
diff options
context:
space:
mode:
author Eric Hameleers <alien@slackware.com>2014-12-12 13:20:17 +0000
committer Eric Hameleers <alien@slackware.com>2014-12-12 13:20:17 +0000
commit2fb9d9860c88db466c089425b2421dff93db1187 (patch)
tree29ed2308ad4a8b741416e319fff91e4136e68828 /gmtk/build
parent5269218fa36063ef2f27c54f5855553ea699b0e2 (diff)
downloadasb-2fb9d9860c88db466c089425b2421dff93db1187.tar.gz
asb-2fb9d9860c88db466c089425b2421dff93db1187.tar.xz
Update to 1.0.9
Diffstat (limited to 'gmtk/build')
-rwxr-xr-xgmtk/build/gmtk.SlackBuild12
1 files changed, 5 insertions, 7 deletions
diff --git a/gmtk/build/gmtk.SlackBuild b/gmtk/build/gmtk.SlackBuild
index 60639027..1c2708b5 100755
--- a/gmtk/build/gmtk.SlackBuild
+++ b/gmtk/build/gmtk.SlackBuild
@@ -1,6 +1,6 @@
#!/bin/sh
# $Id$
-# Copyright 2012, 2013 Eric Hameleers, Eindhoven, NL
+# Copyright 2012, 2013, 2014 Eric Hameleers, Eindhoven, NL
# All rights reserved.
#
# Permission to use, copy, modify, and distribute this software for
@@ -36,6 +36,8 @@
# * Update.
# 1.0.8-1: 19/nov/2013 by Eric Hameleers <alien@slackware.com>
# * Update.
+# 1.0.9-1: 12/dec/2014 by Eric Hameleers <alien@slackware.com>
+# * Update.
#
# Run 'sh gmtk.SlackBuild' to build a Slackware package.
# The package (.tgz) and .txt file as well as build logs are created in /tmp .
@@ -46,7 +48,7 @@
# Set initial variables:
PRGNAM=gmtk
-VERSION=${VERSION:-1.0.8}
+VERSION=${VERSION:-1.0.9}
BUILD=${BUILD:-1}
NUMJOBS=${NUMJOBS:" -j4 "}
TAG=${TAG:-alien}
@@ -62,7 +64,7 @@ PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}
SOURCE="$SRCDIR/${PRGNAM}-${VERSION}.tar.gz"
-SRCURL="http://gmtk.googlecode.com/files/${PRGNAM}-${VERSION}.tar.gz"
+SRCURL="https://code.google.com/p/gmtk/source/browse/packages/${PRGNAM}-${VERSION}.tar.gz"
##
## --- with a little luck, you won't have to edit below this point --- ##
@@ -75,7 +77,6 @@ if [ -z "$ARCH" ]; then
i?86) export ARCH=i486 ;;
armv7hl) export ARCH=$MARCH ;;
armv6hl) export ARCH=$MARCH ;;
- armv5hl) export ARCH=$MARCH ;;
arm*) export ARCH=arm ;;
# Unless $ARCH is already set, use uname -m for all other archs:
*) export ARCH=$MARCH ;;
@@ -95,9 +96,6 @@ case "$ARCH" in
armv6hl) SLKCFLAGS="-O2 -march=armv6 -mfpu=vfp -mfloat-abi=hard"
SLKLDFLAGS=""; LIBDIRSUFFIX=""
;;
- armv5hl) SLKCFLAGS="-O2 -mthumb -march=armv5te -mtune=arm1176jzf-s -mfpu=vfp -mfloat-abi=softfp"
- SLKLDFLAGS=""; LIBDIRSUFFIX=""
- ;;
*) SLKCFLAGS=${SLKCFLAGS:-"O2"}
SLKLDFLAGS=${SLKLDFLAGS:-""}; LIBDIRSUFFIX=${LIBDIRSUFFIX:-""}
;;