summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended/which/which_2.20.bb
blob: b7730de3b316ad7158e3459abd097866acbc56c1 (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
DESCRIPTION = "which - shows the full path of (shell) commands."
SECTION     = "libs"
LICENSE = "GPLv3+"
LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504\
                    file://which.c;beginline=1;endline=17;md5=a9963693af2272e7a8df6f231164e7a2"
HOMEPAGE = "http://ftp.gnu.org/gnu/which/"
DEPENDS     = "cwautomacros-native"

inherit autotools

PR = "r0"

SRC_URI = "http://ftp.gnu.org/gnu/which/which-${PV}.tar.gz \
           file://remove-declaration.patch"

do_configure_prepend() {
	sed -i -e 's%@ACLOCAL_CWFLAGS@%-I ${STAGING_DIR_NATIVE}/usr/share/cwautomacros/m4%g' ${S}/Makefile.am ${S}/tilde/Makefile.am
}

do_install() {
	autotools_do_install
	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
}