mirror of
https://git.yoctoproject.org/poky
synced 2026-02-27 20:09:41 +01:00
Since oe-core 543e39ad "bitbake.conf: handle cmake -dev files packaging
with default rules" (June 2018) there's no need for recipes to add
${libdir}/cmake or ${datadir}/cmake to FILES_${PN}-dev themselves.
(From OE-Core rev: e6f62b8e639a79626d95568c070a410c24bce25e)
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
41 lines
1.3 KiB
BlitzBasic
41 lines
1.3 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] = "2514c6772d0de6254758b98c53f91861"
|
|
SRC_URI[sha256sum] = "73a8894bad94dee83ab468fa09f628daffd567e8bef1a24277f1e9a0daf911ac"
|
|
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/"
|
|
|
|
BBCLASSEXTEND = "nativesdk"
|