forked from ports/contrib
17 lines
527 B
Plaintext
17 lines
527 B
Plaintext
# Description: Scripts to mount the cgroupfs hierarchy
|
|
# URL: https://github.com/tianon/cgroupfs-mount
|
|
# Maintainer: Thomas Penteker, tek at serverop dot de
|
|
# Packager: James Mills, prologic at shortcircuit dot net dot au
|
|
|
|
name=cgroupfs-mount
|
|
version=1.4
|
|
release=1
|
|
source=(https://github.com/tianon/${name}/archive/$version/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
install -D -m 755 cgroupfs-mount $PKG/usr/bin/cgroupfs-mount
|
|
install -D -m 755 cgroupfs-umount $PKG/usr/bin/cgroupfs-umount
|
|
}
|