void-packages/srcpkgs/libcgroup/template
Sven Jonsson 464932ee19 libcgroup: fix cgred service (#5346)
Updated the service according to

"https://forum.voidlinux.eu/t/unpriviledged-linux-container/1124/4"

This is necessary to get /etc/cgconfig.conf loaded.
2016-12-24 09:38:04 +01:00

52 lines
1.2 KiB
Bash

# Template file for 'libcgroup'
pkgname=libcgroup
version=0.41
revision=7
build_style=gnu-configure
configure_args="--sbindir=/usr/bin --enable-pam-module-dir=/usr/lib/security"
hostmakedepends="flex automake libtool"
makedepends="pam-devel"
short_desc="Library that abstracts the control group file system in Linux"
maintainer="Juan RP <xtraeme@voidlinux.eu>"
license="LGPL-2.1"
homepage="http://libcg.sourceforge.net"
distfiles="${SOURCEFORGE_SITE}/libcg/$pkgname-$version.tar.bz2"
checksum=e4e38bdc7ef70645ce33740ddcca051248d56b53283c0dc6d404e17706f6fb51
case "$XBPS_TARGET_MACHINE" in
*-musl) # Add musl-fts implementation
makedepends+=" musl-fts-devel"
LDFLAGS="-lfts"
;;
esac
pre_configure() {
autoreconf -if
}
post_configure() {
# Disable tests
sed -i Makefile -e "/SUBDIRS =/ s; tests;;"
}
libcgroup-utils_package() {
short_desc+=" - utilities"
conf_files="/etc/cgrules.conf /etc/cgconfig.conf"
system_groups="cgred"
pkg_install() {
vmove usr/bin
vmove usr/share/man
vconf samples/cgrules.conf
vconf samples/cgconfig.conf
vsv cgred
}
}
libcgroup-devel_package() {
depends="${sourcepkg}>=${version}_${revision}"
short_desc+=" - development files"
pkg_install() {
vmove usr/include
vmove usr/lib/pkgconfig
vmove "usr/lib/*.so"
}
}