summaryrefslogtreecommitdiffstats
path: root/games
diff options
context:
space:
mode:
author Erik Hanson <erik@slackbuilds.org>2010-05-11 22:53:48 +0200
committer Robby Workman <rworkman@slackbuilds.org>2010-05-11 22:53:48 +0200
commit2f641a37b3f001f88fa466fb9bad2130de4d6702 (patch)
tree67ae7c68cd0377a69c19a4a1ab11de1eae387b57 /games
parent43ad3ee4223cee33e4d89183e0d49c92d7ba00cd (diff)
downloadslackbuilds-2f641a37b3f001f88fa466fb9bad2130de4d6702.tar.gz
slackbuilds-2f641a37b3f001f88fa466fb9bad2130de4d6702.tar.xz
games/spring: Added to 12.1 repository
Diffstat (limited to 'games')
-rw-r--r--games/spring/README4
-rw-r--r--games/spring/doinst.sh3
-rw-r--r--games/spring/slack-desc19
-rw-r--r--games/spring/spring.SlackBuild46
-rw-r--r--games/spring/spring.info8
5 files changed, 80 insertions, 0 deletions
diff --git a/games/spring/README b/games/spring/README
new file mode 100644
index 0000000000..4cc7b896d0
--- /dev/null
+++ b/games/spring/README
@@ -0,0 +1,4 @@
+Spring is a project aiming to create a new and versatile RTS Engine.
+
+Build requirements, available at SlackBuilds.org:
+boost, OpenAL, DevIL, icu4c, glew, and scons
diff --git a/games/spring/doinst.sh b/games/spring/doinst.sh
new file mode 100644
index 0000000000..3857649f50
--- /dev/null
+++ b/games/spring/doinst.sh
@@ -0,0 +1,3 @@
+if [ -x /usr/bin/update-desktop-database ]; then
+ /usr/bin/update-desktop-database -q usr/share/applications &> /dev/null
+fi
diff --git a/games/spring/slack-desc b/games/spring/slack-desc
new file mode 100644
index 0000000000..5978f34835
--- /dev/null
+++ b/games/spring/slack-desc
@@ -0,0 +1,19 @@
+# HOW TO EDIT THIS FILE:
+# The "handy ruler" below makes it easier to edit a package description. Line
+# up the first '|' above the ':' following the base package name, and the '|'
+# on the right side marks the last column you can put a character in. You must
+# make exactly 11 lines for the formatting to be correct. It's also
+# customary to leave one space after the ':'.
+
+ |-----handy-ruler------------------------------------------------------|
+spring: Spring RTS (a powerful free RTS engine)
+spring:
+spring: Spring is a project aiming to create a new and versatile RTS Engine.
+spring:
+spring: http://springrts.com/
+spring:
+spring:
+spring:
+spring:
+spring:
+spring:
diff --git a/games/spring/spring.SlackBuild b/games/spring/spring.SlackBuild
new file mode 100644
index 0000000000..ed52c610d9
--- /dev/null
+++ b/games/spring/spring.SlackBuild
@@ -0,0 +1,46 @@
+#!/bin/sh -eu
+
+# Slackware build script for Spring
+# Written by Erik Hanson erik@slackbuilds.org
+
+PRGNAM=spring
+VERSION=0.77b5
+ARCH=${ARCH:-i486}
+BUILD=${BUILD:-1}
+TAG=${TAG:-_SBo}
+
+CWD=$(pwd)
+TMP=${TMP:-/tmp/SBo}
+PKG=$TMP/package-$PRGNAM
+OUTPUT=${OUTPUT:-/tmp}
+
+rm -rf $PKG
+mkdir -p $TMP $PKG $OUTPUT
+cd $TMP
+rm -rf ${PRGNAM}_${VERSION}
+tar xvf $CWD/${PRGNAM}_${VERSION}-${PRGNAM}_${VERSION}_src.tar.bz2
+cd ${PRGNAM}_${VERSION}
+chown -R root:root .
+chmod -R u+w,go+r-w,a-s .
+
+# This uses some form of auto-detection: rts/build/scons/detect.py
+# This should be safe, but does not create a redistributable package.
+scons configure \
+ prefix=/usr \
+ installprefix=$PKG/usr
+scons
+scons install
+
+find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
+ | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
+
+mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
+cp -a LICENSE.html Documentation/* $PKG/usr/doc/$PRGNAM-$VERSION
+cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
+
+mkdir -p $PKG/install
+cat $CWD/slack-desc > $PKG/install/slack-desc
+cat $CWD/doinst.sh > $PKG/install/doinst.sh
+
+cd $PKG
+/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz
diff --git a/games/spring/spring.info b/games/spring/spring.info
new file mode 100644
index 0000000000..3370d79670
--- /dev/null
+++ b/games/spring/spring.info
@@ -0,0 +1,8 @@
+PRGNAM="spring"
+VERSION="0.77b5"
+HOMEPAGE="http://springrts.com"
+DOWNLOAD="http://planetspring.free.fr/spring/src/spring_0.77b5-spring_0.77b5_src.tar.bz2"
+MD5SUM="1a8c5092a9523f173548c0ca26916dfd"
+MAINTAINER="Erik Hanson"
+EMAIL="erik@slackbuilds.org"
+APPROVED="rworkman"