summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 9f0ca54645938b142260b43c5d77e540f244d895 (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
33
34
35
36
37
38
39
40
41
# Maintainer: Adrián Pérez de Castro <aperez@igalia.com>
pkgname=qbe-git
pkgdesc='Small embeddable C compiler backend'
pkgver=r1269.c8cd282
pkgrel=1
url=http://c9x.me/compile/
license=(custom:MIT)
arch=(x86_64 aarch64)
depends=(glibc)
makedepends=(git)
provides=(qbe)
conflicts=(qbe)
source=("${pkgname}::git://c9x.me/qbe.git")
sha512sums=('SKIP')

pkgver () {
	cd "${pkgname}"
	(
		set -o pipefail
		git describe --long 2>/dev/null | sed 's/\([^-]*-g\)/r\1/;s/-/./g' ||
		printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
	)
}

build () {
	cd "${pkgname}"
	make
}

check () {
	cd "${pkgname}"
	make check
}

package (){
	cd "${pkgname}"
	install -Dm755 qbe "${pkgdir}/usr/bin/qbe"
	install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
	install -m755 -d "${pkgdir}/usr/share/doc/${pkgname}"
	install -m755 -t "${pkgdir}/usr/share/doc/${pkgname}" doc/*.txt
}