summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorMáté Eckl2019-09-30 17:12:58 +0200
committerMáté Eckl2019-09-30 17:13:17 +0200
commit155464e013833d136f34ff44d2e76bcc386d85a1 (patch)
treee993bed84f6afd1b437c2e4fbea6d672090dcbce
parente6e809c6127c6b764572fd18db36ae71cd9f3794 (diff)
downloadaur-155464e013833d136f34ff44d2e76bcc386d85a1.tar.gz
Conform with changes in 0.9.1
https://git.archlinux.org/svntogit/packages.git/commit/trunk?h=packages/nftables&id=341a8ca7498e197638191ccb3f6d2e90e98e570d
-rw-r--r--.SRCINFO4
-rw-r--r--PKGBUILD11
2 files changed, 10 insertions, 5 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 0bfd30878b5b..ac13d78515ee 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,12 +1,12 @@
pkgbase = nftables-git
pkgdesc = Netfilter tables userspace tools
pkgver = 0.9.2
- pkgrel = 1
+ pkgrel = 2
url = https://netfilter.org/projects/nftables/
arch = i686
arch = x86_64
license = GPL2
- makedepends = docbook2x
+ makedepends = asciidoc
makedepends = git
makedepends = bison
makedepends = flex
diff --git a/PKGBUILD b/PKGBUILD
index 8d15cc26d4d6..555c25f6097f 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -4,13 +4,13 @@
pkgname=nftables-git
pkgver=0.9.2
-pkgrel=1
+pkgrel=2
pkgdesc='Netfilter tables userspace tools'
arch=(i686 x86_64)
url='https://netfilter.org/projects/nftables/'
license=('GPL2')
depends=(libmnl libnftnl-git gmp readline ncurses jansson)
-makedepends=(docbook2x git bison flex)
+makedepends=(asciidoc git bison flex)
provides=(nftables)
conflicts=(nftables)
source=(git://git.netfilter.org/nftables
@@ -28,7 +28,12 @@ pkgver() {
build() {
cd nftables
sh autogen.sh
- ./configure --prefix=/usr --sbindir=/usr/bin --sysconfdir=/usr/share --with-json CONFIG_MAN=y DB2MAN=docbook2man
+ ./configure \
+ --prefix=/usr \
+ --sbindir=/usr/bin \
+ --sysconfdir=/usr/share \
+ --with-json \
+ --with-python-bin=''
make
}