summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended/texinfo-dummy-native/texinfo-dummy-native.bb
blob: a942ac2991e75aebd27b656813867a920b4a199e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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
}