mirror of
https://git.yoctoproject.org/poky
synced 2026-02-13 20:23:04 +01:00
Fixes: [YOCTO #13471] (From OE-Core rev: 54e0df20665be8df9d8961d8c4e716e38104ba16) Signed-off-by: Ida Delphine <idadelm@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 6db24928d62aeb093a0e6da6619713eaca57a96f) Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
43 lines
1.4 KiB
BlitzBasic
43 lines
1.4 KiB
BlitzBasic
SUMMARY = "Programmable Completion for Bash 4"
|
|
DESCRIPTION = "Collection of command line command completions for the Bash shell, \
|
|
collection of helper functions to assist in creating new completions, \
|
|
and set of facilities for loading completions automatically on demand, as well \
|
|
as installing them."
|
|
|
|
HOMEPAGE = "https://github.com/scop/bash-completion"
|
|
BUGTRACKER = "https://github.com/scop/bash-completion/issues"
|
|
|
|
LICENSE = "GPLv2"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe"
|
|
|
|
SECTION = "console/utils"
|
|
|
|
SRC_URI = "https://github.com/scop/bash-completion/releases/download/${PV}/${BPN}-${PV}.tar.xz"
|
|
|
|
SRC_URI[md5sum] = "f376ae3266cc70017aa833c39b76f984"
|
|
SRC_URI[sha256sum] = "123c17998e34b937ce57bb1b111cd817bc369309e9a8047c0bcf06ead4a3ec92"
|
|
UPSTREAM_CHECK_REGEX = "bash-completion-(?P<pver>(?!2008).+)\.tar"
|
|
UPSTREAM_CHECK_URI = "https://github.com/scop/bash-completion/releases"
|
|
|
|
PARALLEL_MAKE = ""
|
|
|
|
inherit autotools
|
|
|
|
do_install_append() {
|
|
# compatdir
|
|
install -d ${D}${sysconfdir}/bash_completion.d/
|
|
echo '. ${datadir}/${BPN}/bash_completion' >${D}${sysconfdir}/bash_completion
|
|
|
|
}
|
|
|
|
RDEPENDS_${PN} = "bash"
|
|
|
|
# Some recipes are providing ${PN}-bash-completion packages
|
|
PACKAGES =+ "${PN}-extra"
|
|
FILES_${PN}-extra = "${datadir}/${BPN}/completions/ \
|
|
${datadir}/${BPN}/helpers/"
|
|
|
|
FILES_${PN}-dev += "${datadir}/cmake"
|
|
|
|
BBCLASSEXTEND = "nativesdk"
|