blob: 9d326060c2fbf5d0b3aa2263a50c80126b9977db (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
DESCRIPTION = "Miscellaneous utilities specific to Debian"
SECTION = "base"
LICENSE = "GPL BSD BSD SMAIL"
INC_PR = "r2"
SRC_URI = "${DEBIAN_MIRROR}/main/d/${PN}/${PN}_${PV}.tar.gz"
inherit autotools
do_install_append() {
for app in ${D}${sbindir}/* ${D}${bindir}/*; do
mv $app $app.${PN}
done
# Debian places some utils into ${base_bindir} as does busybox
install -d ${D}${base_bindir}
for app in run-parts.${PN} tempfile.${PN}; do
mv ${D}${bindir}/$app ${D}${base_bindir}/$app
done
}
pkg_prerm_${PN} () {
for app in add-shell installkernel mkboot remove-shell run-parts savelog sensible-browser sensible-editor sensible-pager tempfile which ; do
update-alternatives --remove $app $app.${PN}
done
}
pkg_postinst_${PN} () {
#!/bin/sh
for app in add-shell installkernel mkboot remove-shell ; do
update-alternatives --install ${sbindir}/$app $app $app.${PN} 100
done
for app in savelog sensible-browser sensible-editor sensible-pager which ; do
update-alternatives --install ${bindir}/$app $app $app.${PN} 100
done
for app in run-parts tempfile ; do
update-alternatives --install ${base_bindir}/$app $app $app.${PN} 100
done
}
|