- 264 license table entries with exact download URLs (224/264 resolved) - Complete sources/ directory with all BitBake recipes - Build configuration: tqma6ul-multi-mba6ulx, spaetzle (musl) - Full traceability for Softwarefreigabeantrag - GCC 13.4.0, Linux 6.6.102, U-Boot 2023.04, musl 1.2.4 - License distribution: GPL-2.0 (24), MIT (23), GPL-2.0+ (18), BSD-3 (16)
34 lines
885 B
BlitzBasic
34 lines
885 B
BlitzBasic
SUMMARY = "Fake version of the texinfo utility suite"
|
|
SECTION = "console/utils"
|
|
DESCRIPTION = "${SUMMARY}"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=d6bb62e73ca8b901d3f2e9d71542f4bb"
|
|
DEPENDS = ""
|
|
PV = "1.0"
|
|
|
|
SRC_URI = "file://template.py file://COPYING"
|
|
|
|
S = "${WORKDIR}"
|
|
|
|
inherit native
|
|
|
|
#
|
|
# To avoid texinfo-dummy-native and texinfo-native conflicting we install to base_bindir
|
|
# which is later in PATH than bindir where texinfo-native installs
|
|
#
|
|
do_install_name() {
|
|
FILENAME="${D}${base_bindir}/$1"
|
|
# Using ln causes problems with rm_work
|
|
cp -T "${S}/template.py" "$FILENAME"
|
|
chmod +x $FILENAME
|
|
}
|
|
|
|
do_install() {
|
|
mkdir -p "${D}${base_bindir}"
|
|
for i in makeinfo pod2texi texi2dvi pdftexi2dvi texindex texi2pdf \
|
|
txixml2texi texi2any install-info ginstall-info \
|
|
update-info-dir; do
|
|
do_install_name $i
|
|
done
|
|
}
|