summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 5f8617ef5fcf9bde49202e65d5fc36778ac1412e (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
# Maintainer: Clément Bénier <clement.benier@iot.bzh>
pkgname=afb-libafb-git
pkgver=4.0.0beta5
pkgrel=1
pkgdesc="Core library of Application Framework Binder"
arch=('x86_64')
url="https://github.com/redpesk-core/afb-libafb.git"
license=('LGPL3')
depends=('libmicrohttpd' 'json-c' 'file')
makedepends=('cmake' 'gcc' 'make' 'lua' 'afb-binding' 'git')
checkdepends=()
optdepends=()
provides=('afb-libafb')
conflicts=('afb-libafb')
replaces=()
backup=()
options=()
install=
changelog=
source=("${pkgname%-git}::git+https://github.com/redpesk-core/afb-libafb.git")
noextract=()
md5sums=('SKIP')
validpgpkeys=()

pkgver() {
    cd "$srcdir/${pkgname%-git}"
	git describe | sed "s/-/+/g"
}

build() {
    cmake \
        -DCMAKE_INSTALL_PREFIX=/usr \
        -DCMAKE_INSTALL_LIBDIR=lib \
		-DWITH_LIBUUID=NO \
		-DWITHOUT_CYNAGORA=YES \
		"$srcdir/${pkgname%-git}"
    make -j
}

package() {
	make DESTDIR="$pkgdir/" install
    install -D -m644 "${srcdir}/${pkgname%-git}/LICENSE.GPLv3" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.GPLv3"
}