blob: c7da993e824b84c5feb0951ba214d0a66fb3ee84 (
plain)
1 # Description: Scripts to mount the cgroupfs hierarchy
2 # URL: https://github.com/tianon/cgroupfs-mount
3 # Maintainer: Thomas Penteker, tek at serverop dot de
4 # Packager: James Mills, prologic at shortcircuit dot net dot au
5
6 name=cgroupfs-mount
7 version=1.4
8 release=1
9 source=(https://github.com/tianon/${name}/archive/$version/$name-$version.tar.gz)
10
11 build() {
12 cd $name-$version
13
14 install -D -m 755 cgroupfs-mount $PKG/usr/bin/cgroupfs-mount
15 install -D -m 755 cgroupfs-umount $PKG/usr/bin/cgroupfs-umount
16 }
|