summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: b087ab43cbfa548b2b1b5c5175546b1cccdc6caa (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
# Maintainer: Chocobo1 <chocobo1 AT archlinux DOT net>
# Contributor: Lex Black <autumn-wind at web dot de>
# Contributor: Daniel Micay <danielmicay@gmail.com>

pkgname=libseccomp-git
pkgver=2.2.0.r223.g8ad3638
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')
provides=('libseccomp')
conflicts=('libseccomp')
options=('staticlibs')
source=("git+https://github.com/seccomp/libseccomp.git")
sha256sums=('SKIP')


pkgver() {
  cd "libseccomp"

  git describe --long --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
}

build() {
  cd "libseccomp"

  ./autogen.sh
  ./configure --prefix="/usr"
  make
}

check() {
  cd "libseccomp"

  #make check
}

package() {
  cd "libseccomp"

  make DESTDIR="$pkgdir" install
}