summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 2dc086d87b3112ba89a9d208cf529f4528ac0382 (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
58
59
60
61
# Maintainer: Filippo Berto <berto.f@protonmail.com>
_reponame=NFD
_pkgname=ndn-nfd
pkgname=${_pkgname}-git
pkgver=NFD.0.7.0.r36.gbc0e617e
pkgrel=2
# epoch=
pkgdesc="NFD is a network forwarder that implements and evolves together with the Named Data Networking (NDN) protocol"
arch=('i686' 'x86_64')
url="https://github.com/named-data/${_reponame}"
license=('GPL')
groups=()
depends=('ndn-cxx' 'boost')
makedepends=('git' 'python' 'boost' 'python-sphinx' 'doxygen')
checkdepends=()
optdepends=('valgrind: memory analysis')
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/\([^-]*-g\)/r\1/;s/-/./g'
}

prepare() {
	cd "${srcdir}/${_reponame}"
	git submodule update --init --recursive
	./waf configure --prefix=/usr/local --with-tests
}

build() {
	cd "${srcdir}/${_reponame}"
	./waf build
  ./waf docs
}

# Check disabled until upstream gets fixed                     
#check() {                                                     
#  cd "${srcdir}/${_reponame}-${_reponame}-${pkgver}"          
#  ./waf install --destdir="${srcdir}/tests"                   
#  for unit_test in ./build/unit-tests-*; do                   
#    LD_LIBRARY_PATH="${srcdir}/tests/usr/lib" "$unit_test"        
#  done                                                                       
#}

package() {
  install -dm 755 "${pkgdir}/usr/share/doc/$_pkgname"

  cd "${srcdir}/${_reponame}"
	./waf install --destdir="${pkgdir}"
  cp -r "${srcdir}/${_reponame}-${_reponame}-${pkgver}/build/docs/"* "${pkgdir}/usr/share/doc/$_pkgname"
  mv "${pkgdir}/usr/etc" "${pkgdir}/"
}