2014-03-17 14:10:29 +10:00
|
|
|
# Description: Scripts to mount the cgroupfs hierarchy
|
|
|
|
# URL: https://github.com/tianon/cgroupfs-mount
|
|
|
|
# Maintainer: James Mills, prologic at shortcircuit dot net dot au
|
|
|
|
#
|
2014-11-03 23:12:16 +10:00
|
|
|
# Depends on: bash
|
2014-03-17 14:10:29 +10:00
|
|
|
|
|
|
|
name=cgroupfs-mount
|
2014-11-03 23:12:16 +10:00
|
|
|
version=1.1
|
2014-03-17 14:10:29 +10:00
|
|
|
release=1
|
2014-11-03 23:12:16 +10:00
|
|
|
source=(https://github.com/tianon/${name}/archive/${version}.tar.gz)
|
2014-03-17 14:10:29 +10:00
|
|
|
|
|
|
|
build() {
|
2014-11-03 23:12:16 +10:00
|
|
|
cd $name-$version
|
2014-03-17 14:10:29 +10:00
|
|
|
|
|
|
|
# Package
|
|
|
|
install -D -m 755 cgroupfs-mount $PKG/usr/bin/cgroupfs-mount
|
|
|
|
install -D -m 755 cgroupfs-umount $PKG/usr/bin/cgroupfs-umount
|
|
|
|
|
|
|
|
chown -R root:root $PKG
|
|
|
|
}
|