desktop/wesnoth/PKGBUILD

35 lines
888 B
Bash
Raw Normal View History

#
2010-12-12 02:10:16 +08:00
# Games Packages for Chakra, part of chakra-project.org
#
2010-12-12 02:10:16 +08:00
# Maintainer: Adrián Chaves Fernández (Gallaecio) <adriyetichaves gmail.com>
pkgname=wesnoth
2012-02-28 07:52:26 +08:00
pkgver=1.10.1
pkgrel=1
2010-12-12 02:10:16 +08:00
pkgdesc="A turn-based strategy game on a fantasy world."
arch=('i686' 'x86_64')
license=('GPL2')
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')
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')
build() {
2010-12-12 02:10:16 +08:00
cd $srcdir/$pkgname-$pkgver
2012-02-28 07:52:26 +08:00
mkdir -p build && cd build
cmake \
-DCMAKE_INSTALL_PREFIX=/usr \
2012-01-23 14:05:39 +08:00
-DCMAKE_BUILD_TYPE=Release \
..
make
}
package() {
cd $srcdir/$pkgname-$pkgver/build
2010-12-12 02:10:16 +08:00
make DESTDIR=$pkgdir install
}