diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/openlierox |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/openlierox')
-rw-r--r-- | community/openlierox/PKGBUILD | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/community/openlierox/PKGBUILD b/community/openlierox/PKGBUILD new file mode 100644 index 000000000..c9fa2ff3d --- /dev/null +++ b/community/openlierox/PKGBUILD @@ -0,0 +1,61 @@ +# $Id: PKGBUILD 29214 2010-10-11 15:58:28Z svenstaro $ +# Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com> +# Contributor: Anton Bazhenov <anton.bazhenov at gmail> +# Contributor: Daniel J Griffiths <ghost1227@archlinux.us> + +pkgname=openlierox +pkgver=0.58_rc3 +pkgrel=2 +pkgdesc="A real-time excessive Worms-clone" +arch=('i686' 'x86_64') +url="http://www.openlierox.net/" +license=('LGPL') +depends=('curl' 'gcc-libs' 'sdl_image' 'sdl_mixer' 'gd' 'hawknl' 'libxml2' 'libzip') +makedepends=('cmake') +optdepends=('bash: for scripts support' + 'python: for scripts support') +conflicts=('openlierox-beta' 'openlierox-svn') +source=(http://downloads.sourceforge.net/$pkgname/OpenLieroX_$pkgver.src.tar.bz2) +md5sums=('c4f7057d8f210e30bdef3cfdd75d613b') + +build() { + cd "$srcdir"/OpenLieroX + + sed -i '1i #include <sys/stat.h>' src/breakpad/external/src/common/linux/file_id.cc + sed -i 's|/usr/share/games|/usr/share|g' include/FindFile.h + + [[ -d build ]] && rm -r build + mkdir build + cmake -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DSYSTEM_DATA_DIR=/usr/share \ + -DHAWKNL_BUILTIN=OFF \ + -DBREAKPAD=OFF + make +} + +package() { + cd "$srcdir"/OpenLieroX + + # Awesome, they are using CMake but they do not want it to also make the install. + + # install binary + install -Dm755 bin/$pkgname "$pkgdir"/usr/bin/$pkgname + + # install data + install -m755 -d "$pkgdir"/usr/share/OpenLieroX + cp -r share/gamedir/* "$pkgdir"/usr/share/OpenLieroX/ + find "$pkgdir"/usr/share/OpenLieroX -type d -exec chmod 755 {} + + find "$pkgdir"/usr/share/OpenLieroX -type f -exec chmod 644 {} + + + # install manual + install -Dm644 doc/$pkgname.6 "$pkgdir"/usr/share/man/man6/$pkgname.6 + + # install icon + install -Dm644 share/OpenLieroX.svg \ + "$pkgdir"/usr/share/pixmaps/OpenLieroX.svg + + # install .desktop file + install -Dm644 share/$pkgname-$pkgname.desktop \ + "$pkgdir"/usr/share/applications/$pkgname.desktop +} |