mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
24 lines
714 B
Bash
24 lines
714 B
Bash
pkgname=semantik
|
|
pkgver=1.0.8
|
|
pkgrel=1
|
|
pkgdesc="A mind-mapping tool that helps creating documents such as reports or presentions."
|
|
arch=('x86_64')
|
|
url="https://waf.io/semantik.html"
|
|
license=('GPL')
|
|
depends=('qt5-base' 'qt5-declarative' 'qt5-multimedia' 'qt5-svg' 'qt5-webengine' 'kdelibs4support' 'kio'
|
|
'python3' 'python3-pygments' 'shared-mime-info' 'desktop-file-utils')
|
|
makedepends=('qt5-tools')
|
|
screenshot=('https://waf.io/semantik_pics/s1.png')
|
|
source=("https://waf.io/$pkgname-$pkgver.tar.bz2")
|
|
sha1sums=('b9670fae2e2a26569604328cb1097dd348f6dff0')
|
|
|
|
build() {
|
|
cd $pkgname-$pkgver
|
|
./waf --prefix=/usr configure clean build
|
|
}
|
|
|
|
package() {
|
|
cd $pkgname-$pkgver
|
|
./waf --destdir=$pkgdir install
|
|
}
|