mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-03 06:47:15 +08:00
24 lines
714 B
Bash
24 lines
714 B
Bash
pkgname=semantik
|
|
pkgver=1.2.0
|
|
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=('c9d9d7c0467978f935ed6d8ae2170513c8b0c193')
|
|
|
|
build() {
|
|
cd $pkgname-$pkgver
|
|
./waf --prefix=/usr configure clean build
|
|
}
|
|
|
|
package() {
|
|
cd $pkgname-$pkgver
|
|
./waf --destdir=$pkgdir install
|
|
}
|