summarylogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.SRCINFO3
-rw-r--r--PKGBUILD7
2 files changed, 6 insertions, 4 deletions
diff --git a/.SRCINFO b/.SRCINFO
index ce2369f99582..1f1939fafc34 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,12 +1,13 @@
pkgbase = libseccomp-git
pkgdesc = Interface to the Linux Kernel's syscall filtering mechanism
- pkgver = 2.3.3.r121.g8ad3638
+ pkgver = 2.4.3.r77.g5abc3b1
pkgrel = 1
url = https://github.com/seccomp/libseccomp
arch = i686
arch = x86_64
license = LGPL
makedepends = git
+ makedepends = gperf
depends = glibc
provides = libseccomp
conflicts = libseccomp
diff --git a/PKGBUILD b/PKGBUILD
index 917949c4b65c..e5f6678234f6 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,14 +3,14 @@
# Contributor: Daniel Micay <danielmicay@gmail.com>
pkgname=libseccomp-git
-pkgver=2.3.3.r121.g8ad3638
+pkgver=2.4.3.r77.g5abc3b1
pkgrel=1
pkgdesc="Interface to the Linux Kernel's syscall filtering mechanism"
arch=('i686' 'x86_64')
url="https://github.com/seccomp/libseccomp"
license=('LGPL')
depends=('glibc')
-makedepends=('git')
+makedepends=('git' 'gperf')
provides=('libseccomp')
conflicts=('libseccomp')
options=('staticlibs')
@@ -31,7 +31,8 @@ build() {
cd "libseccomp"
./autogen.sh
- ./configure --prefix="/usr"
+ ./configure \
+ --prefix="/usr"
make
}