mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
32 lines
696 B
Bash
32 lines
696 B
Bash
# Maintainer: Antonio Rojas <arojas@archlinux.org>
|
|
# Source global configuration
|
|
source ../kdeapps.conf
|
|
|
|
pkgname=zanshin
|
|
pkgver=0.4.0
|
|
pkgrel=1
|
|
pkgdesc="To-do management application for KDE based on Akonadi"
|
|
arch=(i686 x86_64)
|
|
url="http://zanshin.kde.org"
|
|
license=(GPL)
|
|
install=$pkgname.install
|
|
depends=(kdepim-runtime kldap kontactinterface akonadi-search)
|
|
makedepends=(extra-cmake-modules kdoctools boost python krunner)
|
|
source=("http://files.kde.org/$pkgname/$pkgname-$pkgver.tar.gz")
|
|
sha1sums=('b16edb23258278f8212204892dff9aff643af476')
|
|
|
|
prepare() {
|
|
mkdir -p build
|
|
}
|
|
|
|
build() {
|
|
cd build
|
|
cmake_kf5 ../$pkgname-$pkgver
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd build
|
|
make DESTDIR="$pkgdir" install
|
|
}
|