summaryrefslogtreecommitdiff
path: root/community/simgear
diff options
context:
space:
mode:
authorParabola <dev@list.parabolagnulinux.org>2011-04-05 14:26:38 +0000
committerParabola <dev@list.parabolagnulinux.org>2011-04-05 14:26:38 +0000
commit415856bdd4f48ab4f2732996f0bae58595092bbe (patch)
treeede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/simgear
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/simgear')
-rw-r--r--community/simgear/PKGBUILD24
1 files changed, 24 insertions, 0 deletions
diff --git a/community/simgear/PKGBUILD b/community/simgear/PKGBUILD
new file mode 100644
index 000000000..3e745df7f
--- /dev/null
+++ b/community/simgear/PKGBUILD
@@ -0,0 +1,24 @@
+# $Id: PKGBUILD 15902 2010-04-17 20:44:11Z spupykin $
+# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
+# Maintainer: William Rea <sillywilly@gmail.com>
+# Contributor: Hans Janssen <hans@janserv.xs4all.nl>
+
+pkgname=simgear
+pkgver=2.0.0
+pkgrel=2
+pkgdesc="A set of open-source libraries designed to be used as building blocks for quickly assembling 3d simulations, games, and visualization applications."
+arch=(i686 x86_64)
+depends=('glut' 'freealut' 'plib' 'openscenegraph')
+makedepends=('boost')
+license=("GPL")
+url="http://www.simgear.org"
+options=('!makeflags')
+source=(ftp://mirrors.ibiblio.org/pub/mirrors/simgear/ftp/Source/SimGear-$pkgver.tar.gz)
+md5sums=('414bea545ea1e8ce17e4aa0809159cec')
+
+build() {
+ cd $startdir/src/SimGear-$pkgver
+ ./configure --prefix=/usr
+ make || return 1
+ make DESTDIR=$startdir/pkg install
+}