mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-03 06:47:15 +08:00
37 lines
806 B
Bash
37 lines
806 B
Bash
pkgname=knights
|
|
pkgver=2.5.0+191+g562ff74
|
|
pkgrel=1
|
|
pkgdesc="Chess board by KDE with XBoard protocol support"
|
|
arch=(x86_64)
|
|
url="https://www.kde.org/applications/games/knights/"
|
|
license=(GPL)
|
|
depends=(libkdegames kplotting plasma-framework hicolor-icon-theme)
|
|
optdepends=('gnuchess: for playing against the computer')
|
|
makedepends=(extra-cmake-modules kdoctools git)
|
|
_commit=562ff7408ed535a73fcc93e06c2bae981733faa5
|
|
source=("git://git.kde.org/knights.git#commit=$_commit")
|
|
sha256sums=('SKIP')
|
|
|
|
pkgver() {
|
|
cd $pkgname
|
|
git describe --tags | sed -e 's/-/+/g' -e 's/v//'
|
|
}
|
|
|
|
prepare() {
|
|
mkdir -p build
|
|
}
|
|
|
|
build() {
|
|
cd build
|
|
cmake ../$pkgname \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
-DBUILD_TESTING=OFF
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd build
|
|
make DESTDIR="$pkgdir" install
|
|
}
|