diff options
author | André Fabian Silva Delgado <andre@pc-01.localdomain> | 2012-02-21 11:37:08 -0200 |
---|---|---|
committer | André Fabian Silva Delgado <andre@pc-01.localdomain> | 2012-02-21 11:37:08 -0200 |
commit | 26eabccf168f954a2b7e9146889a13a20bdfcfcb (patch) | |
tree | f4719f5367f4c14368f3ade46c1434bfccbb8317 /~emulatorman/xonotic-data | |
parent | 3b95a9111e71dd0187c90550b586c1dc7a3ff7fd (diff) |
~emulatorman/hunspell-pt-br
Diffstat (limited to '~emulatorman/xonotic-data')
-rw-r--r-- | ~emulatorman/xonotic-data/PKGBUILD | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/~emulatorman/xonotic-data/PKGBUILD b/~emulatorman/xonotic-data/PKGBUILD new file mode 100644 index 000000000..114954fc3 --- /dev/null +++ b/~emulatorman/xonotic-data/PKGBUILD @@ -0,0 +1,29 @@ +# $Id: PKGBUILD 35989 2010-12-25 03:22:46Z svenstaro $ +# Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com> +# Contributor: Alexander Suhoverhov <cy at ngs dot ru> +# Contributor (Parabola): André Silva <andre.paulista@adinet.com.uy> + +pkgname=xonotic-data +pkgver=0.5.0 +pkgrel=1 +pkgdesc="A free, fast-paced crossplatform first-person shooter (data files)" +arch=('any') +url="http://xonotic.org" +license=('GPL') +depends=() +makedepends=('unzip') +source=("http://dl.xonotic.org/xonotic-${pkgver}.zip") +md5sums=('cdadb384ccf9cad926bb377312832c2f') + +build() { + cd $srcdir/Xonotic/source/darkplaces +} + +package() { + cd $srcdir/Xonotic + + # data + mkdir -p $pkgdir/usr/share/xonotic/ + mv $srcdir/Xonotic/data $pkgdir/usr/share/xonotic/ +} +# vim: ts=2:sw=2 et: |