aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/update-rc.d/update-rc.d_0.7.bb
blob: 2112fd73e9fbee0c746be05706886f5576e8e142 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
SECTION = "base"
PRIORITY = "standard"
DESCRIPTION = "Manage symlinks in /etc/rcN.d"
LICENSE = "GPL"
S = "${WORKDIR}/update-rc.d"
PR = "r1"

SRC_URI = "http://www.the-little-red-haired-girl.org/pub/nylon/thirdparty/update-rc.d-0.7.tar.gz \
           file://add-verbose.patch;patch=1"

PACKAGE_ARCH = "all"

do_compile() {
}

do_stage() {
	install -m 0755 ${S}/update-rc.d ${STAGING_BINDIR_NATIVE}/
}

do_install() {
	install -d ${D}${sbindir}
	install -m 0755 ${S}/update-rc.d ${D}${sbindir}/update-rc.d
}