2010-12-01 00:11:33 +08:00
|
|
|
#
|
2010-12-12 02:10:16 +08:00
|
|
|
# Games Packages for Chakra, part of chakra-project.org
|
2010-12-01 00:11:33 +08:00
|
|
|
#
|
2010-12-12 02:10:16 +08:00
|
|
|
# Maintainer: Adrián Chaves Fernández (Gallaecio) <adriyetichaves gmail.com>
|
|
|
|
|
2010-12-01 00:11:33 +08:00
|
|
|
pkgname=wesnoth
|
2012-02-28 07:52:26 +08:00
|
|
|
pkgver=1.10.1
|
2011-05-15 07:47:23 +08:00
|
|
|
pkgrel=1
|
2010-12-12 02:10:16 +08:00
|
|
|
pkgdesc="A turn-based strategy game on a fantasy world."
|
2010-12-01 00:11:33 +08:00
|
|
|
arch=('i686' 'x86_64')
|
2011-05-15 07:47:23 +08:00
|
|
|
license=('GPL2')
|
2010-12-01 00:11:33 +08:00
|
|
|
url="http://www.wesnoth.org/"
|
2012-01-23 14:05:39 +08:00
|
|
|
depends=('boost-libs' 'freetype2' 'fribidi' 'gcc-libs' 'icu' 'libvorbis' 'lua' 'pango' 'sdl_image' 'sdl_mixer'
|
|
|
|
'sdl_net' 'sdl_ttf')
|
|
|
|
makedepends=('boost' 'cmake')
|
2011-05-15 07:47:23 +08:00
|
|
|
conflicts=('wesnoth-dev' 'wesnoth-svn')
|
|
|
|
source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.bz2)
|
2012-02-28 07:52:26 +08:00
|
|
|
md5sums=('a2ac2d629d4e3e5fc7e7e48f935d9960')
|
2010-12-01 00:11:33 +08:00
|
|
|
|
|
|
|
build() {
|
2010-12-12 02:10:16 +08:00
|
|
|
cd $srcdir/$pkgname-$pkgver
|
2011-05-15 07:47:23 +08:00
|
|
|
|
2012-02-28 07:52:26 +08:00
|
|
|
mkdir -p build && cd build
|
2011-05-15 07:47:23 +08:00
|
|
|
cmake \
|
|
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
2012-01-23 14:05:39 +08:00
|
|
|
-DCMAKE_BUILD_TYPE=Release \
|
2011-05-15 07:47:23 +08:00
|
|
|
..
|
|
|
|
make
|
2010-12-01 00:11:33 +08:00
|
|
|
}
|
2011-01-21 23:12:51 +08:00
|
|
|
|
2010-12-01 00:11:33 +08:00
|
|
|
package() {
|
2011-05-15 07:47:23 +08:00
|
|
|
cd $srcdir/$pkgname-$pkgver/build
|
2010-12-12 02:10:16 +08:00
|
|
|
make DESTDIR=$pkgdir install
|
2010-12-01 00:11:33 +08:00
|
|
|
}
|