summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: d2c81825e75a2dbd56e4e287e41240b7da249b52 (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
# Maintainer: Jeremy Plsek <jeremy plsek at googlemail dot com>
pkgname=puush-qt
pkgdesc="GUI frontend for puush which will create a system tray icon."
pkgver=0.2.1
pkgrel=1
arch=('i686' 'x86_64')
url="https://github.com/jplsek/puush-qt"
license=('BSD')
source=('git+https://github.com/jplsek/puush-qt.git')
md5sums=('SKIP')
makedepends=('git')
depends=('scrot' 'qt5-base' 'qt5-declarative' 'qt5-quickcontrols' 'qt5-quickcontrols2')

build() {
	cd "$pkgname"
	git submodule init
	git submodule update
	qmake PREFIX=/usr puush-qt.pro
	make
}

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