blob: ca379ee6f4029058eb2c364b7cc9c27b98e35ac6 (
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
|
# Maintainer: fenrig <fenrig.linux at outlook.com>
pkgname=lib_amxp-git
pkgver=v0.6.10.r0.g02eb568
pkgrel=1
pkgdesc="Generic C-API for common patterns"
arch=('any')
url="https://gitlab.com/soft.at.home/ambiorix/libraries/libamxp"
license=('MIT')
depends=(
'lib_amxc'
)
makedepends=(
)
provides=(
'lib_amxp'
)
conflicts=(
'lib_amxp'
)
gitbranch="master"
source=("${pkgname}::git+https://gitlab.com/soft.at.home/ambiorix/libraries/libamxp.git#branch=${gitbranch}")
md5sums=('SKIP')
pkgver() {
cd "${pkgname}"
git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
}
build() {
# fix absolute value error
export CFLAGS+=" -Wno-error=absolute-value"
cd "${pkgname}"
make
}
package() {
cd "${pkgname}"
make DEST="${pkgdir}/" INSTALL_LIB_DIR="/lib" install
}
|