blob: 1ad9251790bfb798cfaf23e610c51fc7e8bc8ad5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
SUMMARY = "runit configuration files for Yerba Linux"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302"
SRC_URI = "file://1 file://2 file://3"
do_install() {
install -d ${D}/etc/runit ${D}/etc/service ${D}/sbin ${D}/etc/runit/sv ${D}/etc/sv
install -m 0755 ${WORKDIR}/1 ${D}/etc/runit/1
install -m 0755 ${WORKDIR}/2 ${D}/etc/runit/2
install -m 0755 ${WORKDIR}/3 ${D}/etc/runit/3
}
FILES:${PN} = "/etc/runit /etc/service /etc/sv /etc/runit/1 /etc/runit/2 /etc/runit/3"
|