summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 6ea652061610ffeb4ee04e2e01a7edb964c71214 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# Maintainer: Gerald Bischof gBischof at gebix dot com
pkgname=qsvgstyle
pkgver=20190706
pkgrel=1
epoch=
pkgdesc="Themeable SVG style for KDE Plasma"
arch=(x86_64)
url="https://github.com/DexterMagnific/QSvgStyle"
license=('GPL2')
groups=()
depends=(qt5-x11extras qt5-svg)
makedepends=(qt5-tools)
checkdepends=()
optdepends=()
provides=()
conflicts=()
replaces=()
backup=()
options=()
install=
changelog=
source=("$pkgname::git+https://github.com/DexterMagnific/QSvgStyle.git")
noextract=()
md5sums=('SKIP')
validpgpkeys=()

prepare() {
	cd "$pkgname"
}

build() {
	cd "$pkgname"
	qmake
	make
}

check() {
	cd "$pkgname"
	make -k check
}

package() {
	cd "$pkgname"
	make INSTALL_ROOT="$pkgdir/" install
}