mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-04 01:27:19 +08:00
28 lines
867 B
Bash
28 lines
867 B
Bash
# Maintainer: UtG <utg.chakra.linux[at]gmail[dot]com>
|
|
|
|
pkgname=simgear
|
|
pkgver=3.2.0
|
|
pkgrel=1
|
|
pkgdesc="FOSS libraries for quickly assembling 3d simulations, games, and visualization applications."
|
|
arch=('x86_64')
|
|
depends=('glut' 'freealut' 'plib' 'openscenegraph') #'libxrandr' 'zlib')
|
|
makedepends=('boost' 'cmake' 'mesa')
|
|
license=("GPL")
|
|
#url="http://www.simgear.org"
|
|
url="https://gitorious.org/fg"
|
|
options=('!makeflags' 'staticlibs')
|
|
#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=('d6aac26bf8876391a7d5f4381fc98c01')
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=lib .
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
make DESTDIR=$pkgdir install
|
|
}
|