summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorFilippo Berto2020-04-19 01:05:14 +0200
committerFilippo Berto2020-04-19 01:05:14 +0200
commitf475a549be1132f76feb6cfa5a0c057cff9bca80 (patch)
tree80ca2c2d85e2db1a76ce519ee115f1e05fe3c269
parent4c331a0f6391a7cef993768febbf1a9fd48e8e1f (diff)
downloadaur-f475a549be1132f76feb6cfa5a0c057cff9bca80.tar.gz
Add optional dependencies
-rw-r--r--.SRCINFO4
-rw-r--r--PKGBUILD6
2 files changed, 7 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index fc6a628c12bf..4558c82117eb 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = ndn-nfd-git
pkgdesc = NFD is a network forwarder that implements and evolves together with the Named Data Networking (NDN) protocol
pkgver = NFD.0.7.0.r21.gc68b2e8a
- pkgrel = 1
+ pkgrel = 2
url = https://github.com/named-data/NFD
arch = any
license = GPL
@@ -15,6 +15,8 @@ pkgbase = ndn-nfd-git
depends = ndn-cxx
depends = boost
optdepends = valgrind: memory analysis
+ optdepends = doxygen: build documentation
+ optdepends = python-sphinx: build documentation
provides = ndn-nfd
conflicts = ndn-nfd
source = git+https://github.com/named-data/NFD.git
diff --git a/PKGBUILD b/PKGBUILD
index 7f02237a9f72..f40c2bac9c31 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,7 +3,7 @@ _reponame=NFD
_pkgname=ndn-nfd
pkgname=${_pkgname}-git
pkgver=NFD.0.7.0.r21.gc68b2e8a
-pkgrel=1
+pkgrel=2
# epoch=
pkgdesc="NFD is a network forwarder that implements and evolves together with the Named Data Networking (NDN) protocol"
arch=("any")
@@ -13,7 +13,9 @@ groups=()
depends=('ndn-cxx' 'boost')
makedepends=('git' 'gcc' 'python' 'boost' 'pkgconf' 'sqlite' 'openssl>=1.0.2')
checkdepends=()
-optdepends=('valgrind: memory analysis')
+optdepends=('valgrind: memory analysis'
+ 'doxygen: build documentation'
+ 'python-sphinx: build documentation')
provides=("${_pkgname}")
conflicts=("${_pkgname}")
replaces=()