mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
33 lines
751 B
Bash
33 lines
751 B
Bash
# Maintainer: Antonio Rojas <arojas@archlinux.org>
|
|
# Source global configuration
|
|
source ../kdeapps.conf
|
|
|
|
pkgname=zanshin
|
|
pkgver=0.5.0
|
|
pkgrel=1
|
|
pkgdesc="To-do management application for KDE based on Akonadi"
|
|
arch=(x86_64)
|
|
url="https://zanshin.kde.org"
|
|
license=(GPL)
|
|
install=$pkgname.install
|
|
depends=(kdepim-runtime kontactinterface)
|
|
makedepends=(extra-cmake-modules kdoctools boost python3 krunner kdesignerplugin)
|
|
source=("https://download.kde.org/stable/$pkgname/$pkgname-$pkgver.tar.xz"{,.sig})
|
|
sha256sums=('0781c088741186f3d9ff3027dc961103d33a59b0e3aeb6bc4c66ff24eb3adb4f'
|
|
'SKIP')
|
|
|
|
prepare() {
|
|
mkdir -p build
|
|
}
|
|
|
|
build() {
|
|
cd build
|
|
cmake_kf5 ../$pkgname-$pkgver
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd build
|
|
make DESTDIR="$pkgdir" install
|
|
}
|