summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 4e765c5d2500ad9229bfdb87574f236121fe5a08 (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
# 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
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')

prepare() {
	mkdir $pkgname/build
}

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

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