# $Id: PKGBUILD 59088 2011-11-21 09:41:13Z spupykin $ # Maintainer: Sergej Pupykin # Maintainer: William Rea # Contributor: Hans Janssen pkgname=simgear pkgver=2.4.0 pkgrel=1 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') makedepends=('boost') license=("GPL") #url="http://www.simgear.org" url="https://gitorious.org/fg" options=('!makeflags') #source=("SimGear-$pkgver.tar.gz::https://gitorious.org/fg/simgear/archive-tarball/release/$pkgver") source=("http://mirrors.ibiblio.org/pub/mirrors/simgear/ftp/Source/simgear-$pkgver.tar.bz2") md5sums=('31f4ce7254a43229f050a8f86d6966ef') build() { cd $srcdir/simgear-$pkgver [ -x configure ] || ./autogen.sh [ -f Makefile ] || ./configure --prefix=/usr make } package() { cd $srcdir/simgear-$pkgver make DESTDIR=$pkgdir install }