summaryrefslogtreecommitdiff
path: root/community/simgear/PKGBUILD
blob: 47fb6260e5760a3657645eeaae3f1f6a50ee5443 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# $Id: PKGBUILD 54019 2011-08-11 20:22:33Z 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.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"
	build-fix.patch)
md5sums=('e2c6fab13a74cd42992f8cfd5ad46cde'
         '905a05cc1364c067b3b9574d41cef7fa')

build() {
  cd $srcdir/fg-simgear
#  patch -p1 <$srcdir/build-fix.patch
  [ -x configure ] || ./autogen.sh
  [ -f Makefile ] || ./configure --prefix=/usr
  make
}

package() {
  cd $srcdir/fg-simgear
  make DESTDIR=$pkgdir install
}