40 lines
1.1 KiB
Bash
40 lines
1.1 KiB
Bash
# Template file for 'runit-void'
|
|
pkgname=runit-void
|
|
version=20160826
|
|
revision=1
|
|
wrksrc="void-runit-${version}"
|
|
build_style=gnu-makefile
|
|
homepage="http://www.voidlinux.eu"
|
|
short_desc="Void Linux runit scripts"
|
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
|
license="Public Domain"
|
|
distfiles="https://github.com/voidlinux/void-runit/archive/${version}.tar.gz"
|
|
checksum=e67e97ea38ece9867ce0b6f5d60a35f6fbe15cc19cae7fcb1d2f591d165b03c9
|
|
|
|
depends="virtual?awk procps-ng runit"
|
|
conf_files="
|
|
/etc/hostname
|
|
/etc/locale.conf
|
|
/etc/rc.conf
|
|
/etc/rc.local
|
|
/etc/rc.shutdown
|
|
/etc/sv/agetty-console/conf
|
|
/etc/sv/agetty-serial/conf
|
|
/etc/sv/agetty-tty1/conf"
|
|
|
|
make_dirs="
|
|
/etc/zzz.d/suspend 0755 root root
|
|
/etc/zzz.d/resume 0755 root root"
|
|
|
|
post_install() {
|
|
vmkdir usr/bin
|
|
mv ${DESTDIR}/usr/sbin/* ${DESTDIR}/usr/bin
|
|
vconf ${FILESDIR}/hostname
|
|
vconf ${FILESDIR}/os-release
|
|
vconf ${FILESDIR}/locale.conf
|
|
# Enable services at post-install time instead.
|
|
rm -f ${DESTDIR}/etc/runit/runsvdir/current
|
|
rm -rf ${DESTDIR}/etc/runit/runsvdir/default
|
|
rm -rf ${DESTDIR}/etc/runit/runsvdir/single
|
|
ln -s runit-init ${DESTDIR}/usr/bin/init
|
|
}
|