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/tmw |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/tmw')
-rw-r--r-- | community/tmw/PKGBUILD | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/community/tmw/PKGBUILD b/community/tmw/PKGBUILD new file mode 100644 index 000000000..7c13dbc04 --- /dev/null +++ b/community/tmw/PKGBUILD @@ -0,0 +1,23 @@ +# $Id: PKGBUILD 9602 2010-01-27 15:11:30Z ibiru $ +# Contributor: Bjorn Lindeijer <bjorn lindeijer nl> +# Maintainer: Mateusz Herych <heniekk@gmail.com> + +pkgname=tmw +pkgver=0.0.29.1 +pkgrel=2 +pkgdesc="The Mana World (TMW) is a serious effort to create an innovative free and open source MMORPG." +arch=('i686' 'x86_64') +url="http://themanaworld.org" +license=('GPL') +depends=('curl' 'guichan' 'sdl_image' 'libgl' 'libxml2' 'physfs' 'sdl_mixer' 'sdl_net' 'sdl_ttf') +makedepends=('mesa') +source=(http://downloads.sourceforge.net/sourceforge/themanaworld/$pkgname-$pkgver.tar.gz) +md5sums=('263de26c8545a261c6b82b7ae639f733') + +build() { + cd $srcdir/$pkgname-$pkgver + + ./configure --prefix=/usr + make || return 1 + make DESTDIR=$pkgdir install +} |