diff options
Diffstat (limited to 'libcap-ng/Pkgfile')
-rw-r--r-- | libcap-ng/Pkgfile | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/libcap-ng/Pkgfile b/libcap-ng/Pkgfile deleted file mode 100644 index 8c347d2..0000000 --- a/libcap-ng/Pkgfile +++ /dev/null @@ -1,26 +0,0 @@ -# Description: A library for Linux that makes using posix capabilities easy -# URL: https://github.com/stevegrubb/libcap-ng -# Maintainer: Aaron Ball, nullspoon at oper dot io -# Depends on: - -name=libcap-ng -version=0.8.5 -release=1 -source=(https://github.com/stevegrubb/${name}/archive/refs/tags/v${version}.tar.gz) - -build() { - cd "${name}-${version}" - - ./autogen.sh - ./configure \ - --enable-static=no \ - --prefix=/usr \ - --with-python3 \ - --without-python - - # Fixes https://github.com/stevegrubb/libcap-ng/issues/53 - sed -i '/PYTHON = $(PYTHON3)/d' bindings/python3/Makefile.am - - make - make DESTDIR="${PKG}" install -} |