summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 91fd21caa1dbfb0259a2235e86bebaef3c8ec761 (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
42
43
44
45
46
# Maintainer: fenrig <fenrig.linux at outlook.com>
pkgname=mod_sahtrace-git
pkgver=1.0.1.r0.g198a1c9
pkgrel=1
pkgdesc="Ambiorix module for sahtrace"
arch=("x86_64" "i686" "i486" "pentium4" "arm" "armv6h" "armv7h" "aarch64")
url="https://gitlab.com/soft.at.home/ambiorix/modules/mod-sahtrace.git"
license=(BSD)

depends=(
	'lib_amxc'
	'lib_amxp'
	'lib_amxo'
	'libsahtrace'
)
makedepends=(
	'git'
)
provides=(
	'mod_sahtrace'
)
conflicts=(
	'mod_sahtrace'
)

gitbranch="main"

source=("${pkgname}::git+https://gitlab.com/soft.at.home/ambiorix/modules/mod-sahtrace.git#branch=${gitbranch}")
md5sums=('SKIP')

pkgver() {
  cd "${pkgname}"
  git describe --long --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
}

build() {
	cd "${pkgname}"
	export CFLAGS="${CFLAGS} -I$(realpath ../include)"
	make
}

package() {
	cd "${pkgname}"
	make DEST="${pkgdir}/" LIBDIR="/usr/lib" install
	install -D LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
}