aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/debianutils/debianutils.inc
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/debianutils/debianutils.inc')
-rw-r--r--recipes/debianutils/debianutils.inc35
1 files changed, 35 insertions, 0 deletions
diff --git a/recipes/debianutils/debianutils.inc b/recipes/debianutils/debianutils.inc
new file mode 100644
index 0000000000..35ef03d14f
--- /dev/null
+++ b/recipes/debianutils/debianutils.inc
@@ -0,0 +1,35 @@
+SECTION = "base"
+LICENSE = "GPL BSD BSD SMAIL"
+DESCRIPTION = "Miscellaneous utilities specific to Debian"
+
+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
+}
+
+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 run-parts savelog sensible-browser sensible-editor sensible-pager tempfile which ; do
+ update-alternatives --install ${bindir}/$app $app $app.${PN} 100
+done
+}
+
+pkg_prerm_${PN} () {
+ #!/bin/sh
+
+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
+}
+
+
+