diff options
Diffstat (limited to 'community/simgear/PKGBUILD')
-rw-r--r-- | community/simgear/PKGBUILD | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/community/simgear/PKGBUILD b/community/simgear/PKGBUILD index 5d128c96f..2b688116e 100644 --- a/community/simgear/PKGBUILD +++ b/community/simgear/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 15902 2010-04-17 20:44:11Z spupykin $ +# $Id: PKGBUILD 50327 2011-06-28 11:35:39Z 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 +pkgrel=3 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 'mips64el') depends=('glut' 'freealut' 'plib' 'openscenegraph') @@ -19,6 +19,10 @@ md5sums=('414bea545ea1e8ce17e4aa0809159cec') build() { cd $startdir/src/SimGear-$pkgver ./configure --prefix=/usr - make || return 1 + make +} + +package() { + cd $startdir/src/SimGear-$pkgver make DESTDIR=$startdir/pkg install } |