summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 09343b1d40f69e6a11797f2a4ec5d20b4aa7d722 (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
# Maintainer: fenrig <fenrig.linux at outlook.com>
pkgname=amxb_pcb-git
pkgver=v0.6.2.r0.g897bf18
pkgrel=1
pkgdesc="PCB baapi back-end"
arch=('any')
url="https://gitlab.com/soft.at.home/ambiorix/modules/amxb_backends/amxb_pcb.git"
license=('MIT')

depends=(
	'lib_amxc'
	'lib_amxp'
	'lib_amxd'
	'libpcb'
)
makedepends=(
)
provides=(
	'amxb_pcb'
	'amxb_pcb-git'
)
conflicts=(
	'amxb_pcb'
	'amxb_pcb-git'
)

gitbranch="master"

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

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

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

package() {
	cd "${pkgname}"
	make DEST="${pkgdir}/" INSTALL_LIB_DIR="/lib" install
}