mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 10:32:13 +08:00
25 lines
705 B
Bash
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
|
|
}
|