16 lines
447 B
Plaintext
16 lines
447 B
Plaintext
# Description: Scripts to mount the cgroupfs hierarchy
|
|
# URL: https://github.com/tianon/cgroupfs-mount
|
|
# Maintainer: Matt Housh, jaeger at crux dot ninja
|
|
|
|
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
|
|
}
|