summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: d509b6309b67c344e2db760c41283ed3560bffad (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

# Maintainer: Victor Tran <vicr12345 at gmail dot com>
pkgname=ts-qtplatform
pkgver=1.2
pkgrel=1
pkgdesc="Qt Platform Abstraction for theShell"
arch=("x86_64")
url="https://github.com/vicr123/ts-qtplatform"
license=('GPL3')
depends=('qt5-base' 'contemporary-widgets' 'kiconthemes' 'ttf-contemporary')
makedepends=('git')
source=("$pkgname-$pkgver"::'git+https://github.com/vicr123/ts-qtplatform#branch=master')
md5sums=('SKIP')

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

package() {
	mkdir -p "$pkgdir/usr/lib/qt/plugins/platformthemes/"
	cp "$pkgname-$pkgver/libts-qtplatform.so" "$pkgdir/usr/lib/qt/plugins/platformthemes/ts.so"
}