summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 4515f1763e16632a2d2769e0566f52a0343068d4 (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
_pkgname=Shell
pkgname=desq-shell-git
pkgver=r44.46c4cf9
pkgrel=1
pkgdesc="The Desktop Shell for Desq"
arch=('any')
url="https://gitlab.com/DesQ"
license=('none')
depends=('libdesq-git' 'pam' 'qt5-svg' 'libcsys-git')
makedepends=('git')
provides=("${pkgname%-git}")
conflicts=("${pkgname%-git}")
groups=('desq-git')
source=("git+https://gitlab.com/Desq/${_pkgname}.git")
md5sums=('SKIP')

pkgver() {
	cd "$srcdir/${_pkgname}"
# Git, no tags available
	printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}

build() {
	cd "$srcdir/${_pkgname}"
	qmake
	make
}

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