xref: /openbmc/openbmc/poky/meta/recipes-extended/which/which_2.21.bb (revision c9537f57ab488bf5d90132917b0184e2527970a5)
1SUMMARY = "Displays the full path of shell commands"
2DESCRIPTION = "Which is a utility that prints out the full path of the \
3executables that bash(1) would execute when the passed \
4program names would have been entered on the shell prompt. \
5It does this by using the exact same algorithm as bash."
6SECTION = "libs"
7HOMEPAGE = "https://carlowood.github.io/which/"
8
9LICENSE = "GPL-3.0-or-later"
10LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504\
11                    file://which.c;beginline=1;endline=17;md5=a9963693af2272e7a8df6f231164e7a2"
12DEPENDS     = "cwautomacros-native"
13
14inherit autotools texinfo update-alternatives
15
16
17EXTRA_OECONF = "--disable-iberty"
18
19SRC_URI = "${GNU_MIRROR}/which/which-${PV}.tar.gz \
20           file://automake.patch \
21           file://0001-getopt-Fix-signature-of-getenv-function.patch \
22           "
23
24SRC_URI[sha256sum] = "f4a245b94124b377d8b49646bf421f9155d36aa7614b6ebf83705d3ffc76eaad"
25
26do_configure:prepend() {
27	sed -i -e 's%@ACLOCAL_CWFLAGS@%-I ${STAGING_DIR_NATIVE}/usr/share/cwautomacros/m4%g' ${S}/Makefile.am ${S}/tilde/Makefile.am
28}
29
30ALTERNATIVE:${PN} = "which"
31ALTERNATIVE_PRIORITY = "100"
32
33ALTERNATIVE:${PN}-doc = "which.1"
34ALTERNATIVE_LINK_NAME[which.1] = "${mandir}/man1/which.1"
35
36BBCLASSEXTEND = "nativesdk"
37