desktop/kolf/PKGBUILD

39 lines
885 B
Bash
Raw Normal View History

2017-12-29 06:32:19 +08:00
# Include global configuration
source ../kdeapps.conf
pkgname=kolf
pkgver=${_kdever}
pkgrel=1
pkgdesc="Minigolf game"
arch=('x86_64')
pkgdesc="A miniature golf game with 2d top-down view"
url="https://kde.org/applications/games/kolf/"
arch=(x86_64)
license=(GPL LGPL FDL)
groups=(kde-applications kdegames)
depends=(libkdegames hicolor-icon-theme kdelibs4support)
makedepends=(extra-cmake-modules kdesignerplugin kdoctools)
conflicts=(kdegames-kolf)
replaces=(kdegames-kolf)
provides=(kdegames-kolf)
options=('docs' 'debug')
source=("$_mirror/${pkgname}-$_kdever.tar.xz"{,.sig})
sha256sums=(`grep ${pkgname}-$_kdever.tar.xz ../kdeapps.sums | cut -d " " -f1`
'SKIP')
validpgpkeys=(${Avalidpgpkeys[@]})
prepare() {
mkdir -p build
}
build() {
cd build
cmake_kf5 ../${pkgname}-${pkgver}
make
}
package() {
cd build
make DESTDIR=${pkgdir} install
}