blob: c677415b0618ed650dda602ce6735171c00beda5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/bin/bash
DEPS=(glibc)
SOURCE=https://github.com/stevegrubb/libcap-ng/archive/refs/tags/v0.8.2.tar.gz
DESC="A library for linux that makes posix capabilities easy"
build () {
make prefix=/usr lib=lib
}
package() {
make prefix=/usr lib=lib DESTDIR=$PKG_DEST install
}
|