mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 10:32:13 +08:00
26 lines
746 B
Bash
26 lines
746 B
Bash
pkgname=zanshin
|
|
pkgver=0.3.1
|
|
pkgrel=1
|
|
pkgdesc="A Getting Things Done application which aims at getting your mind like water."
|
|
url="hhttps://zanshin.kde.org/"
|
|
arch=('x86_64')
|
|
license=('GPL3')
|
|
depends=('kde-baseapps' 'kdepimlibs' 'libbaloo4')
|
|
makedepends=('boost' 'automoc4' 'cmake')
|
|
categories=('utils')
|
|
source=("http://files.kde.org/zanshin/${pkgname}-${pkgver}.tar.bz2")
|
|
screenshot=('http://zanshin.kde.org/images/screenshot.png')
|
|
sha256sums=('f4fb120499eb6f64e11aff714d44cc5fb4a70ccc4db3179a6926a0883eb362b2')
|
|
|
|
build() {
|
|
cd $pkgname-$pkgver
|
|
mkdir -p build && cd build
|
|
cmake .. -DCMAKE_INSTALL_PREFIX=`kde4-config --prefix` -DCMAKE_BUILD_TYPE=Release
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $pkgname-$pkgver/build
|
|
make DESTDIR="$pkgdir/" install
|
|
}
|