Files
openwrt_yocto/poky/meta/recipes-extended/texinfo-dummy-native/texinfo-dummy-native.bb
T
francis.wang 4c86c082a2 Initial commit: OpenWrt-Yocto monorepo
Combine poky (Yocto scarthgap), meta-openembedded (scarthgap), and
meta-openwrt into a single repository.

Components:
- poky/             Yocto core framework (BitBake + OE-Core)
- meta-openembedded/ Community layers (meta-oe, meta-python, meta-networking)
- meta-openwrt/     OpenWrt customization layer
- setup-env.sh      One-click build environment setup
- README.md         Project documentation
2026-07-11 13:28:01 +08:00

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
}