#!/bin/sh

MAKEDEPS="make "
DEPS="musl"

PKG_VER=0.8.2
SOURCE=https://github.com/stevegrubb/libcap-ng/archive/refs/tags/v$PKG_VER.tar.gz

DESC="A library for linux that makes posix capabilities easy"

build () {
    ./autogen.sh
    ./configure --prefix=/usr
    make prefix=/usr lib=lib
}

package() {
    make prefix=/usr lib=lib DESTDIR=$PKG_DEST install
}