2015-04-07 19:28:15 +08:00
|
|
|
# Contributions from Arch: https://www.archlinux.org/packages/extra/x86_64/kdegames-kpatience/
|
2013-12-18 02:36:04 +08:00
|
|
|
# Include global configuration
|
2012-11-20 03:05:54 +08:00
|
|
|
|
2015-04-07 19:28:15 +08:00
|
|
|
pkgname=kpat
|
2018-07-24 04:59:22 +08:00
|
|
|
pkgver=18.07.80
|
2014-02-01 19:24:18 +08:00
|
|
|
pkgrel=1
|
2014-01-13 05:14:23 +08:00
|
|
|
pkgdesc="Collection of various patience games"
|
2012-11-20 03:05:54 +08:00
|
|
|
arch=('x86_64')
|
|
|
|
url='http://www.kde.org'
|
2015-04-07 19:28:15 +08:00
|
|
|
license=('GPL' 'LGPL' 'FDL')
|
2016-06-16 22:34:54 +08:00
|
|
|
depends=('knotifyconfig' 'libkdegames' 'kdelibs4support')
|
2015-04-07 19:28:15 +08:00
|
|
|
makedepends=('extra-cmake-modules' 'kdoctools' 'python3')
|
2015-08-11 05:26:57 +08:00
|
|
|
groups=('kde' 'kde-uninstall' 'kde-applications' 'kdegames')
|
2015-04-07 19:28:15 +08:00
|
|
|
replaces=('kdegames-kpat')
|
|
|
|
conflicts=('kdegames-kpat')
|
2015-05-14 05:17:22 +08:00
|
|
|
options=('docs' 'debug')
|
2018-07-24 04:59:22 +08:00
|
|
|
source=("https://download.kde.org/unstable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
|
|
|
|
sha256sums=('ba23f032d4034bff68f6035a91d1e6131b4d9f40093af4ffe858cb0898e46a6d'
|
2018-06-18 02:07:39 +08:00
|
|
|
'SKIP')
|
2018-06-18 00:14:15 +08:00
|
|
|
validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7 # Albert Astals Cid <aacid@kde.org>
|
|
|
|
F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck <cfeck@kde.org>
|
2015-04-07 19:28:15 +08:00
|
|
|
|
|
|
|
prepare() {
|
|
|
|
mkdir -p build
|
|
|
|
}
|
2012-11-20 03:05:54 +08:00
|
|
|
|
|
|
|
build() {
|
2015-04-07 19:28:15 +08:00
|
|
|
cd build
|
2018-06-18 00:14:15 +08:00
|
|
|
cmake ../${pkgname}-${pkgver} \
|
|
|
|
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
|
|
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
|
|
-DKDE_INSTALL_LIBDIR=lib \
|
|
|
|
-DKDE_INSTALL_SYSCONFDIR=/etc \
|
|
|
|
-DKDE_INSTALL_LIBEXECDIR=lib \
|
|
|
|
-DUDEV_RULES_INSTALL_DIR=/usr/lib/udev/rules.d \
|
|
|
|
-DBUILD_TESTING=OFF \
|
|
|
|
-DKDE_INSTALL_USE_QT_SYS_PATHS=ON "$@"
|
2015-04-07 19:28:15 +08:00
|
|
|
make
|
2012-11-20 03:05:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
2015-08-11 05:26:57 +08:00
|
|
|
cd build
|
|
|
|
make DESTDIR=${pkgdir} install
|
2012-11-20 03:05:54 +08:00
|
|
|
}
|