mirror of
https://git.yoctoproject.org/poky
synced 2026-02-08 18:02:12 +01:00
Changelog: ========== - Fix root directory test in mattrib - -b BiosDisk flag for mformat to allow setting physdrive to a user-specified value - Clearer error message in mformat when trying to mformat a disk whose total size is not known - Make recursive copy more consistent - Trailing slash now always implies target should be a directory - Code cleanup (From OE-Core rev: 7f04fd469f9ee989eadd85ea949527300704ca70) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
50 lines
1.4 KiB
BlitzBasic
50 lines
1.4 KiB
BlitzBasic
SUMMARY = "Utilities to access MS-DOS disks without mounting them"
|
|
DESCRIPTION = "Mtools is a collection of utilities to access MS-DOS disks from GNU and Unix without mounting them."
|
|
HOMEPAGE = "http://www.gnu.org/software/mtools/"
|
|
SECTION = "optional"
|
|
LICENSE = "GPL-3.0-only"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504"
|
|
|
|
DEPENDS += "virtual/libiconv"
|
|
|
|
RDEPENDS:${PN}:libc-glibc = "glibc-gconv-ibm850"
|
|
RRECOMMENDS:${PN}:libc-glibc = "\
|
|
glibc-gconv-ibm437 \
|
|
glibc-gconv-ibm737 \
|
|
glibc-gconv-ibm775 \
|
|
glibc-gconv-ibm851 \
|
|
glibc-gconv-ibm852 \
|
|
glibc-gconv-ibm855 \
|
|
glibc-gconv-ibm857 \
|
|
glibc-gconv-ibm860 \
|
|
glibc-gconv-ibm861 \
|
|
glibc-gconv-ibm862 \
|
|
glibc-gconv-ibm863 \
|
|
glibc-gconv-ibm865 \
|
|
glibc-gconv-ibm866 \
|
|
glibc-gconv-ibm869 \
|
|
"
|
|
SRC_URI[sha256sum] = "541e179665dc4e272b9602f2074243591a157da89cc47064da8c5829dbd2b339"
|
|
|
|
SRC_URI = "${GNU_MIRROR}/mtools/mtools-${PV}.tar.bz2 \
|
|
file://mtools-makeinfo.patch \
|
|
file://clang_UNUSED.patch \
|
|
"
|
|
|
|
SRC_URI:append:class-native = " file://disable-hardcoded-configs.patch"
|
|
|
|
inherit autotools texinfo
|
|
|
|
EXTRA_OECONF = "--without-x"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|
|
|
|
PACKAGECONFIG ??= ""
|
|
PACKAGECONFIG[libbsd] = "ac_cv_lib_bsd_main=yes,ac_cv_lib_bsd_main=no,libbsd"
|
|
|
|
do_install:prepend () {
|
|
# Create bindir to fix parallel installation issues
|
|
mkdir -p ${D}/${bindir}
|
|
mkdir -p ${D}/${datadir}
|
|
}
|