diff options
Diffstat (limited to 'community/libcap/build')
| -rwxr-xr-x | community/libcap/build | 17 | 
1 files changed, 17 insertions, 0 deletions
| diff --git a/community/libcap/build b/community/libcap/build new file mode 100755 index 00000000..69f5e47c --- /dev/null +++ b/community/libcap/build @@ -0,0 +1,17 @@ +#!/bin/sh -e + +mk() { +    make \ +        GOLANG=no \ +        PREFIX=/usr \ +        SBINDIR=/usr/bin \ +        LIBDIR=/usr/lib \ +        PKGCONFIGDIR=/usr/lib/pkgconfig \ +        RAISE_SETFCAP=no \ +        INDENT=" " \ +        PAM_CAP=no \ +        "$@" +} + +mk +mk DESTDIR="$1" install | 
