From d5bc20830d8c1551db7f3cbb1f3ae1aa07b0719a Mon Sep 17 00:00:00 2001 From: Dexuan Cui Date: Fri, 27 Aug 2010 16:36:58 +0800 Subject: which (GPLv2): inherit update-alternatives by this, we can avoid the pkg_postinst/postrm in the recipe file. Signed-off-by: Dexuan Cui --- meta/recipes-extended/which/which_2.18.bb | 18 +++++------------- 1 file changed, 5 insertions(+), 13 deletions(-) (limited to 'meta/recipes-extended/which') diff --git a/meta/recipes-extended/which/which_2.18.bb b/meta/recipes-extended/which/which_2.18.bb index b177949788..7eeb320a75 100644 --- a/meta/recipes-extended/which/which_2.18.bb +++ b/meta/recipes-extended/which/which_2.18.bb @@ -8,14 +8,14 @@ BUGTRACKER = "n/a" LICENSE = "GPLv2+" LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe" -PR = "r0" +PR = "r1" SRC_URI = "http://www.xs4all.nl/~carlo17/which/which-${PV}.tar.gz \ file://fix_name_conflict_group_member.patch" DEPENDS = "cwautomacros-native" -inherit autotools +inherit autotools update-alternatives do_configure_prepend() { OLD="@ACLOCAL_CWFLAGS@" @@ -26,15 +26,7 @@ do_install_append() { mv ${D}/${bindir}/which ${D}/${bindir}/which.${PN} } -pkg_postinst_${PN}() { - if [ "${PN}" = "${BPN}" ] ; then - update-alternatives --install ${bindir}/which which which.${PN} 100 - fi -} - -pkg_prerm_${PN}() { - if [ "${PN}" = "${BPN}" ] ; then - update-alternatives --remove which which.${PN} - fi -} +ALTERNATIVE_NAME = "which" +ALTERNATIVE_PATH = "which.${PN}" +ALTERNATIVE_PRIORITY = "100" -- cgit v1.2.3-54-g00ecf