desktop/zanshin/PKGBUILD

34 lines
933 B
Bash
Raw Normal View History

#
# 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
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')
license=('GPL3')
depends=('kde-baseapps' 'kdepimlibs')
2011-12-01 06:02:44 +08:00
makedepends=('boost' 'automoc4')
categories=('utils')
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')
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
}