summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: f78fcdaa9dbdcab0c634cf8cf9bbb6234142c69e (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: Clément Bénier <clement.benier@iot.bzh>
pkgname=afb-binding-git
pkgver=4.0.0beta2+3+g25d7df0
pkgrel=1
pkgdesc="Header files for developing bindings of Application Framework Binder"
arch=('x86_64')
url="https://github.com/redpesk-core/afb-binding.git"
license=('LGPL3')
depends=()
makedepends=('git' 'cmake' 'gcc' 'make' 'lua')
checkdepends=()
optdepends=()
provides=('afb-binding')
conflicts=('afb-binding')
replaces=()
backup=()
options=()
install=
changelog=
source=("${pkgname%-git}::git+https://github.com/redpesk-core/afb-binding.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 \
		"$srcdir/${pkgname%-git}"
    make -j
}

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