blob: ad2909a1f15805e218f9c4f8e54c0ec0d899dff1 (
plain)
1 # Description: Scripts to mount the cgroupfs hierarchy
2 # URL: https://github.com/tianon/cgroupfs-mount
3 # Maintainer: Matt Housh, jaeger at crux dot ninja
4
5 name=cgroupfs-mount
6 version=1.4
7 release=1
8 source=(https://github.com/tianon/${name}/archive/$version/$name-$version.tar.gz)
9
10 build() {
11 cd $name-$version
12
13 install -D -m 755 cgroupfs-mount $PKG/usr/bin/cgroupfs-mount
14 install -D -m 755 cgroupfs-umount $PKG/usr/bin/cgroupfs-umount
15 }
|