2015-04-07 08:14:17 +08:00
|
|
|
# Contributions from Arch: https://www.archlinux.org/packages/extra/x86_64/libkmahjongg/
|
|
|
|
# Include global configuration
|
|
|
|
source ../kdeapps.conf
|
|
|
|
|
|
|
|
pkgname=libkmahjongg
|
|
|
|
pkgver=${_kdever}
|
|
|
|
pkgrel=1
|
|
|
|
pkgdesc="Common code, backgrounds and tile sets for games using Mahjongg tiles"
|
|
|
|
arch=('x86_64')
|
|
|
|
url='https://projects.kde.org/projects/kde/kdegames/libmahjongg'
|
|
|
|
license=('GPL' 'LGPL' 'FDL')
|
|
|
|
depends=('kcompletion' 'kconfigwidgets')
|
|
|
|
makedepends=('extra-cmake-modules' 'qt5-svg' 'python3')
|
|
|
|
groups=("kde" "kdegames" "kde-uninstall")
|
2015-05-14 05:17:22 +08:00
|
|
|
options=('docs' 'debug')
|
2015-04-11 07:36:27 +08:00
|
|
|
source=("$_mirror/${pkgname}-$_kdever.tar.xz")
|
|
|
|
sha256sums=(`grep ${pkgname}-$_kdever.tar.xz ../checksums.txt | cut -d " " -f1`)
|
2015-04-07 08:14:17 +08:00
|
|
|
|
|
|
|
prepare() {
|
|
|
|
mkdir -p build
|
|
|
|
}
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd build
|
|
|
|
cmake_kf5 ../${pkgname}-${pkgver}
|
|
|
|
make
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
2015-04-10 10:00:06 +08:00
|
|
|
cd build
|
2015-04-07 08:14:17 +08:00
|
|
|
make DESTDIR=${pkgdir} install
|
|
|
|
}
|