mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
26 lines
801 B
Bash
26 lines
801 B
Bash
#
|
|
# Chakra Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer abveritas@chakra-project.org
|
|
|
|
pkgname=semantik
|
|
pkgver=0.8.4
|
|
pkgrel=1
|
|
pkgdesc="A mind-mapping tool that helps creating documents such as reports or presentions."
|
|
arch=('i686' 'x86_64')
|
|
url="http://kde-apps.org/content/show.php/Semantik?content=55242"
|
|
license=('GPL')
|
|
depends=('kdelibs' 'python2' 'qt')
|
|
makedepends=('kdelibs' 'ocaml' 'kde-workspace')
|
|
screenshot=('http://www.freehackers.org/~tnagy/semantik.png')
|
|
source=("http://semantik.googlecode.com/files/semantik-${pkgver}.tar.bz2")
|
|
sha1sums=('7e024fd7521980838f0c16ba380b6f38e6490ecd')
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
./waf --prefix=/usr configure
|
|
sudo ln -s /usr/lib/ocaml/libcamlstr.a /usr/lib/ocaml/libstr.a
|
|
./waf
|
|
./waf --destdir="$pkgdir" install
|
|
}
|