desktop/semantik/PKGBUILD
2015-05-03 22:05:40 +00:00

25 lines
705 B
Bash

pkgname=semantik
pkgver=0.9.4
pkgrel=1
pkgdesc="A mind-mapping tool that helps creating documents such as reports or presentions."
arch=('x86_64')
url="http://kde-apps.org/content/show.php/Semantik?content=55242"
license=('GPL')
depends=('kde-runtime' 'python2')
makedepends=('ocaml')
screenshot=('http://www.freehackers.org/~tnagy/semantik.png')
source=("http://ftp.waf.io/pub/release/${pkgname}-${pkgver}.tar.bz2")
sha1sums=('c07820c5b456c95c7cf1113f207fe2a3b1a085db')
build() {
cd "$srcdir/$pkgname-$pkgver"
./waf --prefix=/usr configure
sudo ln -s /usr/lib/ocaml/libcamlstr.a /usr/lib/ocaml/libstr.a
./waf
}
package() {
cd "$srcdir/$pkgname-$pkgver"
./waf --destdir="$pkgdir" install
}