mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-03 19:27:15 +08:00
25 lines
713 B
Bash
25 lines
713 B
Bash
pkgname=simgear
|
|
pkgver=2016.3.1
|
|
_pkgver=2016.3
|
|
pkgrel=1
|
|
pkgdesc="FOSS libraries for quickly assembling 3d simulations, games, and visualization applications."
|
|
arch=('x86_64')
|
|
depends=('glu' 'freeglut' 'freealut' 'plib' 'openscenegraph' 'libxrandr')
|
|
makedepends=('boost' 'cmake' 'mesa')
|
|
license=("GPL")
|
|
url="http://flightgear.sourceforge.net/"
|
|
options=('!makeflags' 'staticlibs')
|
|
source=("http://downloads.sourceforge.net/project/flightgear/release-$_pkgver/simgear-$pkgver.tar.bz2")
|
|
sha1sums=('6174e24fb240e0556158a3c21bac9e7cf4cb2cd4')
|
|
|
|
build() {
|
|
cd $pkgname-$pkgver
|
|
cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=lib .
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $pkgname-$pkgver
|
|
make DESTDIR=$pkgdir install
|
|
}
|