2011-12-01 05:43:23 +08:00
|
|
|
#
|
|
|
|
# Apps Packages for Chakra, part of chakra-project.org
|
|
|
|
#
|
|
|
|
# Contributor : Giuseppe Calà <jiveaxe@gmail.com>
|
|
|
|
|
|
|
|
# include global config
|
|
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
|
|
|
|
pkgname=zanshin
|
2013-12-16 18:29:44 +08:00
|
|
|
pkgver=0.2.1
|
2011-12-01 05:43:23 +08:00
|
|
|
pkgrel=1
|
|
|
|
pkgdesc="A Getting Things Done application which aims at getting your mind like water."
|
|
|
|
url="http://quickgit.kde.org/?p=zanshin.git&a=summary"
|
2013-12-16 18:29:44 +08:00
|
|
|
arch=('x86_64')
|
2011-12-01 05:43:23 +08:00
|
|
|
license=('GPL3')
|
|
|
|
depends=('kde-baseapps' 'kdepimlibs')
|
2011-12-01 06:02:44 +08:00
|
|
|
makedepends=('boost' 'automoc4')
|
2012-03-16 22:51:37 +08:00
|
|
|
categories=('utils')
|
2011-12-01 05:43:23 +08:00
|
|
|
source=("http://files.kde.org/zanshin/${pkgname}-${pkgver}.tar.bz2")
|
|
|
|
screenshot=('http://zanshin.kde.org/images/screenshot.png')
|
2013-12-16 18:29:44 +08:00
|
|
|
md5sums=('e8c920f07374cb08200f990ef592938c')
|
2011-12-01 05:43:23 +08:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd $srcdir/$pkgname-$pkgver
|
|
|
|
mkdir build && cd build
|
|
|
|
cmake .. -DCMAKE_INSTALL_PREFIX=`kde4-config --prefix` -DCMAKE_BUILD_TYPE=Release
|
|
|
|
make || return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
cd $srcdir/$pkgname-$pkgver/build
|
|
|
|
make DESTDIR="$pkgdir/" install
|
|
|
|
}
|