summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: c093d97fa855cb7abeec3ec45fd5f12c01185a11 (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: fenrig <fenrig.linux at outlook.com>
pkgname=lib_amxj-git
pkgver=v0.3.16.r0.g236d85e
pkgrel=1
pkgdesc="JSON Reader/generation - JSON string variant"
arch=('any')
url="https://gitlab.com/soft.at.home/ambiorix/libraries/libamxj.git"
license=('MIT')

depends=(
	'lib_amxc'
	'yajl'
)
makedepends=(
)
provides=(
	'lib_amxj'
)
conflicts=(
	'lib_amxj'
)

gitbranch="master"

source=("${pkgname}::git+https://gitlab.com/soft.at.home/ambiorix/libraries/libamxj.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}/" LIBDIR="/usr/lib" install
}