updated on Wed Jan 11 08:01:35 UTC 2012
[aur-mirror.git] / kroots / PKGBUILD
blob69fbd3958a15aeb543879374922c0af1c2594ab8
1 # Maintainer: (were_vire) Jonathan Fine <were.Vire@gmail.com>
3 pkgname=kroots
4 pkgver=1.5.0
5 pkgrel=1
6 pkgdesc="kroots finds and graphs all the roots of a complex number"
7 arch=('i686' 'x86_64')
8 url="http://werevire.tripod.com"
9 license=('GPL')
10 depends=('kdelibs>=4.3.1' 'qt>=4.4')
11 makedepends=('gcc' 'cmake' 'automoc4')
12 source=("http://kde-apps.org/CONTENT/content-files/116086-kroots-1.5.0.tar.gz")
13 md5sums=("ef36a6c928afaf746d77fb82fff2954a")
15 build(){
16         cd $srcdir/${pkgname}-${pkgver}
17         mkdir build && cd build
18         cmake -DCMAKE_INSTALL_PREFIX=/usr .. || return 1
19         make || return 1
20         make DESTDIR="$pkgdir/" install || return 1
22