# $Id: PKGBUILD 96161 2013-08-20 15:02:17Z svenstaro $ # Maintainer: Sven-Hendrik Haase # Contributor: Jan de Groot # Contributor: Tobias Powalowski # Contributor: Jacobo Arvelo # Contributor: Douglas Soares de Andrade pkgname=wesnoth pkgver=1.10.7 pkgrel=1 pkgdesc="A turn-based strategy game on a fantasy world" arch=('i686' 'x86_64') license=('GPL') url="http://www.wesnoth.org/" depends=('sdl_ttf' 'sdl_net' 'sdl_mixer' 'sdl_image' 'fribidi' 'boost-libs' 'pango' 'lua' "wesnoth-data" 'dbus-core' 'python2') makedepends=('boost' 'cmake') install=wesnoth.install options=(!emptydirs) source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.bz2 wesnothd.tmpfiles.conf wesnothd.service) md5sums=('3f460a494530d32aa5d5d0f19c95efbd' '2d2fea6b3d86dfd589f5ad35a3be1f97' 'd1b6bf1d3dc05086ee6a370adff0ae4a') build() { cd "$srcdir/$pkgname-$pkgver" mkdir build && cd build cmake .. \ -DCMAKE_INSTALL_PREFIX=/usr \ -DENABLE_OMP=ON \ -DENABLE_TOOLS=ON \ -DMANDIR=share/man make } package() { cd "$srcdir/$pkgname-$pkgver" cd build make DESTDIR="$pkgdir" install rm -r $pkgdir/usr/share/applications rm -r $pkgdir/usr/share/doc rm -r $pkgdir/usr/share/pixmaps rm -r $pkgdir/usr/share/wesnoth install -Dm644 "$srcdir/wesnothd.tmpfiles.conf" "$pkgdir/usr/lib/tmpfiles.d/wesnothd.conf" install -Dm644 "$srcdir/wesnothd.service" "$pkgdir/usr/lib/systemd/system/wesnothd.service" }