libcgroup: initial import

This commit is contained in:
Thomas Penteker 2015-12-06 13:03:45 +01:00
parent 30f1d6ab54
commit c2f9196b6b
3 changed files with 73 additions and 0 deletions

52
libcgroup/.footprint Normal file
View File

@ -0,0 +1,52 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/cgclassify
-rwxr-xr-x root/root usr/bin/cgcreate
-rwxr-xr-x root/root usr/bin/cgdelete
-rwsr-xr-x root/root usr/bin/cgexec
-rwxr-xr-x root/root usr/bin/cgget
-rwxr-xr-x root/root usr/bin/cgset
-rwxr-xr-x root/root usr/bin/cgsnapshot
-rwxr-xr-x root/root usr/bin/lscgroup
-rwxr-xr-x root/root usr/bin/lssubsys
drwxr-xr-x root/root usr/include/
-rw-r--r-- root/root usr/include/libcgroup.h
drwxr-xr-x root/root usr/include/libcgroup/
-rw-r--r-- root/root usr/include/libcgroup/config.h
-rw-r--r-- root/root usr/include/libcgroup/error.h
-rw-r--r-- root/root usr/include/libcgroup/groups.h
-rw-r--r-- root/root usr/include/libcgroup/init.h
-rw-r--r-- root/root usr/include/libcgroup/iterators.h
-rw-r--r-- root/root usr/include/libcgroup/log.h
-rw-r--r-- root/root usr/include/libcgroup/tasks.h
drwxr-xr-x root/root usr/lib/
-rwxr-xr-x root/root usr/lib/libcgroup.la
lrwxrwxrwx root/root usr/lib/libcgroup.so -> libcgroup.so.1.0.41
lrwxrwxrwx root/root usr/lib/libcgroup.so.1 -> libcgroup.so.1.0.41
-rwxr-xr-x root/root usr/lib/libcgroup.so.1.0.41
drwxr-xr-x root/root usr/lib/pkgconfig/
-rw-r--r-- root/root usr/lib/pkgconfig/libcgroup.pc
drwxr-xr-x root/root usr/sbin/
-rwxr-xr-x root/root usr/sbin/cgclear
-rwxr-xr-x root/root usr/sbin/cgconfigparser
-rwxr-xr-x root/root usr/sbin/cgrulesengd
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/man/
drwxr-xr-x root/root usr/share/man/man1/
-rw-r--r-- root/root usr/share/man/man1/cgclassify.1.gz
-rw-r--r-- root/root usr/share/man/man1/cgclear.1.gz
-rw-r--r-- root/root usr/share/man/man1/cgcreate.1.gz
-rw-r--r-- root/root usr/share/man/man1/cgdelete.1.gz
-rw-r--r-- root/root usr/share/man/man1/cgexec.1.gz
-rw-r--r-- root/root usr/share/man/man1/cgget.1.gz
-rw-r--r-- root/root usr/share/man/man1/cgset.1.gz
-rw-r--r-- root/root usr/share/man/man1/cgsnapshot.1.gz
-rw-r--r-- root/root usr/share/man/man1/lscgroup.1.gz
-rw-r--r-- root/root usr/share/man/man1/lssubsys.1.gz
drwxr-xr-x root/root usr/share/man/man5/
-rw-r--r-- root/root usr/share/man/man5/cgconfig.conf.5.gz
-rw-r--r-- root/root usr/share/man/man5/cgred.conf.5.gz
-rw-r--r-- root/root usr/share/man/man5/cgrules.conf.5.gz
drwxr-xr-x root/root usr/share/man/man8/
-rw-r--r-- root/root usr/share/man/man8/cgconfigparser.8.gz
-rw-r--r-- root/root usr/share/man/man8/cgrulesengd.8.gz

1
libcgroup/.md5sum Normal file
View File

@ -0,0 +1 @@
3dea9d50b8a5b73ff0bf1cdcb210f63f libcgroup-0.41.tar.bz2

20
libcgroup/Pkgfile Normal file
View File

@ -0,0 +1,20 @@
# Description:
# URL:
# Maintainer:
# Packager:
# Depends on:
name=libcgroup
version=0.41
release=1
source=(http://download.sourceforge.net/project/libcg/$name/v${version}/${name}-${version}.tar.bz2)
build() {
cd $name-$version
./configure --prefix=/usr \
--disable-pam
make
make DESTDIR=$PKG install
}