summaryrefslogtreecommitdiff
path: root/community/libseccomp/PKGBUILD
diff options
context:
space:
mode:
authorNicolás Reynolds <fauno@endefensadelsl.org>2013-05-15 21:35:07 -0300
committerNicolás Reynolds <fauno@endefensadelsl.org>2013-05-15 21:35:07 -0300
commit1a65caeb80e2cc8c7b39262d72255124d0c8614e (patch)
treefb2047cbeaa71fabba55e68dc8f5d4838fb5018c /community/libseccomp/PKGBUILD
parent9f7fb9c12e84f20cd108b933f1a51e216f76cd98 (diff)
parentb90f83b99150003a2022c3a4bbad90b12eb56b7e (diff)
Merge branch 'master' of gparabola:abslibre-mips64el
Diffstat (limited to 'community/libseccomp/PKGBUILD')
-rw-r--r--community/libseccomp/PKGBUILD24
1 files changed, 24 insertions, 0 deletions
diff --git a/community/libseccomp/PKGBUILD b/community/libseccomp/PKGBUILD
new file mode 100644
index 000000000..9bdaee4fc
--- /dev/null
+++ b/community/libseccomp/PKGBUILD
@@ -0,0 +1,24 @@
+# Maintainer: Daniel Micay <danielmicay@gmail.com>
+# Contributor: Patryk Kowalczyk < patryk at kowalczyk dot ws>
+
+pkgname=libseccomp
+pkgver=2.0.0
+pkgrel=2
+pkgdesc='Enhanced seccomp library'
+arch=('i686' 'x86_64')
+license=('LGPL2.1')
+url="http://sourceforge.net/projects/libseccomp/"
+depends=('glibc')
+source=("http://downloads.sourceforge.net/project/$pkgname/$pkgname-$pkgver.tar.gz")
+md5sums=('f988feac6a3425f2c918f32b28df1caa')
+
+build() {
+ cd $pkgname-$pkgver
+ ./configure --prefix=/usr
+ make
+}
+
+package() {
+ cd $pkgname-$pkgver
+ make DESTDIR="$pkgdir" install
+}