mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
25 lines
815 B
Bash
25 lines
815 B
Bash
|
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
||
|
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
|
||
|
# Maintainer: William Rea <sillywilly@gmail.com>
|
||
|
# Contributor: Hans Janssen <hans@janserv.xs4all.nl>
|
||
|
|
||
|
pkgname=simgear
|
||
|
pkgver=1.9.1
|
||
|
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)
|
||
|
depends=('glut' 'freealut' 'plib' 'openscenegraph')
|
||
|
makedepends=('boost')
|
||
|
license=("GPL")
|
||
|
url="http://www.simgear.org"
|
||
|
options=('!makeflags')
|
||
|
source=(ftp://ftp.simgear.org/pub/simgear/Source/SimGear-$pkgver.tar.gz)
|
||
|
md5sums=('edfdaa60518a06699a409d0eb9f1b157')
|
||
|
|
||
|
build() {
|
||
|
cd $startdir/src/SimGear-$pkgver
|
||
|
./configure --prefix=/usr
|
||
|
make || return 1
|
||
|
make DESTDIR=$startdir/pkg install
|
||
|
}
|