summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 3b2f8a28262dd7cc40d5c0e39393c6b8aaac7395 (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: Hyacinthe Cartiaux
pkgname=qconf-git
pkgver=r3.28751dd
pkgrel=1
pkgdesc="Qt5 compatible qconf - Qt configuration tool"
arch=('i686' 'x86_64')
url="https://github.com/psi-plus/qconf"
license=('GPL2')
depends=('qt5-base')
makedepends=('git')
conflicts=(qconf)
provides=(qconf)
source=(git+https://github.com/psi-plus/qconf.git)
md5sums=('SKIP')

pkgver() {
	printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}

build() {
  cd $srcdir/qconf

  ./configure --prefix=/usr
  make

}

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