summaryrefslogtreecommitdiff
path: root/core/libseccomp/MAKEPKG
blob: 3326144b834a4c8d2281ef0d6555d2b7a9bb46d2 (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
#!/bin/mkpkg
# description: Syscall filtering library
# url: https://github.com/seccomp/libseccomp

name=libseccomp
version=2.6.1
release=1
makedeps=(autoconf automake libtool gperf)
source=(https://github.com/seccomp/$name/archive/v$version/$name-$version.tar.gz)

sha256sums=(
    "f9a13e4c633d319a9240189760ca348caa0837c0ebe2a09b17061da8ceaf60f0"
)

build() {
    cd $name-$version
    
    ./autogen.sh
    
    ./configure \
        --prefix=/ \
        --libdir=/lib \
        --mandir=/usr/share/man \
        --disable-static
    
    make
    make DESTDIR=$PKG install
    
}

signify() {
    untrusted comment: public key
    RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
}

# vim: filetype=sh