diff options
Diffstat (limited to 'meta/recipes-devtools/mtools/mtools_4.0.24.bb')
-rw-r--r-- | meta/recipes-devtools/mtools/mtools_4.0.24.bb | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/meta/recipes-devtools/mtools/mtools_4.0.24.bb b/meta/recipes-devtools/mtools/mtools_4.0.24.bb new file mode 100644 index 0000000000..d7cc72d172 --- /dev/null +++ b/meta/recipes-devtools/mtools/mtools_4.0.24.bb | |||
@@ -0,0 +1,51 @@ | |||
1 | SUMMARY = "Utilities to access MS-DOS disks without mounting them" | ||
2 | DESCRIPTION = "Mtools is a collection of utilities to access MS-DOS disks from GNU and Unix without mounting them." | ||
3 | HOMEPAGE = "http://www.gnu.org/software/mtools/" | ||
4 | SECTION = "optional" | ||
5 | LICENSE = "GPLv3" | ||
6 | LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504" | ||
7 | |||
8 | DEPENDS += "virtual/libiconv" | ||
9 | |||
10 | RDEPENDS_${PN}_libc-glibc = "glibc-gconv-ibm850" | ||
11 | RRECOMMENDS_${PN}_libc-glibc = "\ | ||
12 | glibc-gconv-ibm437 \ | ||
13 | glibc-gconv-ibm737 \ | ||
14 | glibc-gconv-ibm775 \ | ||
15 | glibc-gconv-ibm851 \ | ||
16 | glibc-gconv-ibm852 \ | ||
17 | glibc-gconv-ibm855 \ | ||
18 | glibc-gconv-ibm857 \ | ||
19 | glibc-gconv-ibm860 \ | ||
20 | glibc-gconv-ibm861 \ | ||
21 | glibc-gconv-ibm862 \ | ||
22 | glibc-gconv-ibm863 \ | ||
23 | glibc-gconv-ibm865 \ | ||
24 | glibc-gconv-ibm866 \ | ||
25 | glibc-gconv-ibm869 \ | ||
26 | " | ||
27 | SRC_URI[md5sum] = "aeaf34406e9d28922b7c09a35ca5955e" | ||
28 | SRC_URI[sha256sum] = "24f4a2da9219f98498eb1b340cd96db7ef9b684c067d1bdeb6e85efdd13b2fb9" | ||
29 | |||
30 | SRC_URI = "${GNU_MIRROR}/mtools/mtools-${PV}.tar.bz2 \ | ||
31 | file://mtools-makeinfo.patch \ | ||
32 | file://no-x11.gplv3.patch \ | ||
33 | file://clang_UNUSED.patch \ | ||
34 | " | ||
35 | |||
36 | SRC_URI_append_class-native = " file://disable-hardcoded-configs.patch" | ||
37 | |||
38 | inherit autotools texinfo features_check | ||
39 | |||
40 | EXTRA_OECONF = "--without-x" | ||
41 | |||
42 | BBCLASSEXTEND = "native nativesdk" | ||
43 | |||
44 | PACKAGECONFIG ??= "" | ||
45 | PACKAGECONFIG[libbsd] = "ac_cv_lib_bsd_main=yes,ac_cv_lib_bsd_main=no,libbsd" | ||
46 | |||
47 | do_install_prepend () { | ||
48 | # Create bindir to fix parallel installation issues | ||
49 | mkdir -p ${D}/${bindir} | ||
50 | mkdir -p ${D}/${datadir} | ||
51 | } | ||