blob: 7c59eb5210b658de602abb7570ea150395047b84 (
plain)
1 # Description: 2D MMORPG (like tibia but w/o freaks throwing chairs at their mothers)
2 # URL: http://themanaworld.org/
3 # Maintainer: Bartlomiej Palmowski, rotwang at crux dot org dot pl
4 # Depends on: guichan physfs libxml2 libpng sdl_mixer sdl_net sdl_ttf
5
6 name=tmw
7 version=0.0.29.1
8 release=1
9 source=(http://downloads.sourceforge.net/project/themanaworld/The%20Mana%20World/$version/$name-$version.tar.gz)
10
11 build() {
12 cd $name-$version
13 ./configure --prefix=/usr --mandir=/usr/man --disable-nls
14 make
15 make DESTDIR=$PKG install
16 }
|