PKGBUILDs/extra/kdegames-ksirk/PKGBUILD
2016-11-11 01:17:05 +00:00

41 lines
1.1 KiB
Bash

# $Id$
# Maintainer: Felix Yan <felixonmars@archlinux.org>
# Contributor: Andrea Scarpino <andrea@archlinux.org>
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
# - patch from Fedora to fix FTBFS on ARM
pkgname=kdegames-ksirk
pkgver=16.08.3
pkgrel=1
pkgdesc="A computerized version of a well known strategy game"
url="http://kde.org/applications/games/ksirk/"
arch=('i686' 'x86_64')
license=('GPL' 'LGPL' 'FDL')
groups=('kde-applications' 'kdegames')
depends=('kdebase-runtime' 'libkdegames4')
makedepends=('cmake' 'automoc4')
source=("http://download.kde.org/stable/applications/${pkgver}/src/ksirk-${pkgver}.tar.xz"
'ksirk-15.12.1-iris_base64.patch')
sha1sums=('d1330154a30e826f8a6e437bcea87fb5b2e23890'
'78dbd3d4e70d2afb917ba86a6254a775de2bc2dd')
prepare() {
patch -d ksirk-${pkgver} -p1 -i ../ksirk-15.12.1-iris_base64.patch
}
build() {
mkdir -p build
cd build
cmake ../ksirk-${pkgver} \
-DCMAKE_BUILD_TYPE=Release \
-DKDE4_BUILD_TESTS=OFF \
-DCMAKE_INSTALL_PREFIX=/usr
make
}
package() {
cd build
make DESTDIR="${pkgdir}" install
}