38 lines
1001 B
Plaintext
38 lines
1001 B
Plaintext
# Description: The Battle for Wesnoth is a free, turn-based strategy game with a fantasy theme. Fight a desperate battle to reclaim the throne of Wesnoth, or take hand in any number of other adventures.
|
|
# URL: http://www.wesnoth.org/
|
|
# Maintainer: Danny Rawlins, romster at shortcircuit dot net dot au
|
|
# Packager: Danny Rawlins, romster at shortcircuit dot net dot au
|
|
# Depends on: xorg sdl_image sdl_mixer sdl_net freetype python
|
|
|
|
name=wesnoth
|
|
version=1.2.5
|
|
release=1
|
|
source=(http://dl.sourceforge.net/sourceforge/wesnoth/wesnoth-$version.tar.bz2)
|
|
|
|
build() {
|
|
cd wesnoth-$version
|
|
|
|
if pkginfo -i |grep '^kdebase '
|
|
then
|
|
local configure='--with-kde'
|
|
fi
|
|
|
|
if pkginfo -i |grep '^gnome '
|
|
then
|
|
local configure='--with-gnome'
|
|
fi
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--mandir=/usr/man \
|
|
--disable-nls \
|
|
--enable-python \
|
|
$configure
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
find $PKG/usr/man -maxdepth 0 -type d ! -regex 'man?' -exec rm -r {} \;
|
|
rm $PKG/usr/share/wesnoth/data/COPYING.txt
|
|
}
|
|
|