blob: 84cd1e41df496245c4584f43733048efe007d44d (
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
|
# Maintainer: Josip Ponjavic <josipponjavic at gmail dot com>
# Contributor:
pkgname=qactus-git
pkgver=v0.6.0.r1.gd99d5cd
pkgrel=1
pkgdesc="A Qt-based OBS notifier application."
arch=('i686' 'x86_64')
url="https://github.com/javierllorente/qactus"
license=('GPL2' 'GPL3')
depends=('qtkeychain-qt5')
makedepends=('git')
conflicts=('qactus')
provides=('qactus')
source=('git://github.com/javierllorente/qactus.git')
md5sums=('SKIP')
pkgver() {
cd qactus
git describe --long --tags | sed -r 's/([^-]*-g)/r\1/;s/-/./g'
}
build() {
cd qactus
qmake-qt5 PREFIX=/usr qactus.pro
make
}
package() {
cd qactus
make INSTALL_ROOT="${pkgdir}" install
}
|