blob: b13517e49d43cf5262d6b99024772ade75a203d0 (
plain)
1 # Description: Library that abstracts the control group file system in Linux
2 # URL: https://github.com/libcgroup/libcgroup
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4
5 name=libcgroup
6 version=0.42.2
7 release=2
8 source=(https://github.com/libcgroup/libcgroup/releases/download/v$version/$name-$version.tar.bz2)
9
10 build() {
11 cd $name-$version
12
13 ./configure --prefix=/usr \
14 --enable-pam-module-dir=/lib/security
15
16 make
17 make DESTDIR=$PKG install
18 }
|