summaryrefslogtreecommitdiff
path: root/repo/system/libseccomp.xibuild
blob: 2fda78cb8d717c448ead6bb4d8dbc6574c4566f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash

DEPS=(glibc)

PKG_VER=2.5.3
SOURCE=https://github.com/seccomp/libseccomp/releases/download/v$PKG_VER/libseccomp-$PKG_VER.tar.gz

DESC="Enhanced seccomp library"

build () {
    ./configure --prefix=/usr --disable-static &&
    make
    make check
    make prefix=/usr lib=lib DESTDIR=$PKG_DEST install

}