diff options
author | root <root@rshg054.dnsready.net> | 2013-07-19 01:10:32 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-07-19 01:10:32 -0700 |
commit | 8fbc0076a4827ddc6af92e0b9daa4c4c31450808 (patch) | |
tree | 03fd0e2921ebd53228d9a93e32ed3976b636cbea /community/stuntrally/PKGBUILD | |
parent | e445a313723389ba9ee1fded025c567dae5b21ea (diff) |
Fri Jul 19 01:09:18 PDT 2013
Diffstat (limited to 'community/stuntrally/PKGBUILD')
-rw-r--r-- | community/stuntrally/PKGBUILD | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/community/stuntrally/PKGBUILD b/community/stuntrally/PKGBUILD new file mode 100644 index 000000000..5c286dcdc --- /dev/null +++ b/community/stuntrally/PKGBUILD @@ -0,0 +1,37 @@ +# $Id$ +# Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com> +# Contributor: Sven Schneider <archlinux.sandmann@googlemail.com> +# Contributor: Jason Melton <jason.melton@gmail.com> + +pkgname=stuntrally +pkgver=2.0 +pkgrel=1 +pkgdesc='Stunt Rally game with track editor, based on VDrift' +arch=('x86_64' 'i686') +license=('GPL3') +url='http://code.google.com/p/vdrift-ogre' +depends=('libvorbis' 'mygui' 'sdl' 'enet' 'hicolor-icon-theme' 'libxcursor' 'stuntrally-data') +makedepends=('cmake' 'boost') +install=stuntrally.install +source=("$pkgname-$pkgver.tar.gz::https://nodeload.github.com/$pkgname/$pkgname/tar.gz/$pkgver") +sha256sums=('ef3e645e4911f37c28925e3339c39555e849b7ac13511f009742030f531eed68') + +build() { + cd "$srcdir/stuntrally-$pkgver/" + + rm -rf build + mkdir build && cd build + cmake .. \ + -DCMAKE_INSTALL_PREFIX="/usr" \ + -DSHARE_INSTALL="share/stuntrally" + make +} + +package() { + cd "$srcdir/stuntrally-$pkgver/build/" + + make DESTDIR="$pkgdir" install + rm -rf "$pkgdir/usr/share/stuntrally/" +} + +# vim:set ts=2 sw=2 et: |