blob: af14b5a006c8ef537a4cc8bdcb627f6cc62bbdee (
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
46
47
48
49
50
51
52
53
54
55
56
57
|
# Maintainer: Filippo Berto <berto.f@protonmail.com>
_reponame=ndn-cxx
_pkgname=ndn-cxx
pkgname=${_pkgname}-git
pkgver=0.7.0.r48.g599623c3
pkgrel=2
# epoch=
pkgdesc="Library implementing Named Data Networking (NDN) primitives that can be used to write various NDN applications"
arch=('i686' 'x86_64')
url="https://github.com/named-data/${_reponame}"
license=('GPL')
groups=()
depends=('boost' 'sqlite' 'openssl>=1.0.2')
makedepends=('git' 'python' 'doxygen' 'python-sphinx')
checkdepends=()
optdepends=('boost-stacktrace-backtrace')
provides=("${_pkgname}")
conflicts=("${_pkgname}")
replaces=()
backup=()
options=()
install=
source=("git+${url}.git")
noextract=()
sha256sums=('SKIP')
validpgpkeys=()
pkgver() {
cd "${srcdir}/${_reponame}"
git describe --long | sed 's/^ndn.cxx.//;s/\([^-]*-g\)/r\1/;s/-/./g'
}
prepare() {
cd "${srcdir}/${_reponame}"
./waf configure --prefix=/usr/local --with-tests
}
build() {
cd "${srcdir}/${_reponame}"
./waf build
./waf docs
}
#check() {
# cd "${srcdir}/${_reponame}-${pkgver}"
# ./waf install --destdir="${srcdir}/tests"
# LD_LIBRARY_PATH="${srcdir}/tests/usr/lib" ./build/unit-tests
#}
package() {
install -dm 755 "${pkgdir}/usr/share/doc/$_pkgname"
cd "${srcdir}/${_reponame}"
./waf install --destdir="${pkgdir}"
cp -r "${srcdir}/${_reponame}/build/docs/"* "${pkgdir}/usr/share/doc/$_pkgname"
mv "${pkgdir}/usr/etc" "${pkgdir}/"
}
|