diff options
Diffstat (limited to 'meta-filesystems/recipes-filesystems/ntfs-3g-ntfsprogs/ntfs-3g-ntfsprogs_2022.10.3.bb')
| -rw-r--r-- | meta-filesystems/recipes-filesystems/ntfs-3g-ntfsprogs/ntfs-3g-ntfsprogs_2022.10.3.bb | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/meta-filesystems/recipes-filesystems/ntfs-3g-ntfsprogs/ntfs-3g-ntfsprogs_2022.10.3.bb b/meta-filesystems/recipes-filesystems/ntfs-3g-ntfsprogs/ntfs-3g-ntfsprogs_2022.10.3.bb new file mode 100644 index 0000000000..37a8106bb0 --- /dev/null +++ b/meta-filesystems/recipes-filesystems/ntfs-3g-ntfsprogs/ntfs-3g-ntfsprogs_2022.10.3.bb | |||
| @@ -0,0 +1,53 @@ | |||
| 1 | DESCRIPTION = "The NTFS-3G driver is an open source, freely available NTFS driver for Linux with read and write support." | ||
| 2 | HOMEPAGE = "http://www.ntfs-3g.org/" | ||
| 3 | DEPENDS = "fuse libgcrypt" | ||
| 4 | PROVIDES = "ntfsprogs ntfs-3g" | ||
| 5 | LICENSE = "GPL-2.0-only & LGPL-2.0-only" | ||
| 6 | LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552 \ | ||
| 7 | file://COPYING.LIB;md5=f30a9716ef3762e3467a2f62bf790f0a" | ||
| 8 | |||
| 9 | SRC_URI = "http://tuxera.com/opensource/ntfs-3g_ntfsprogs-${PV}.tgz \ | ||
| 10 | file://0001-libntfs-3g-Makefile.am-fix-install-failed-while-host.patch \ | ||
| 11 | " | ||
| 12 | S = "${WORKDIR}/ntfs-3g_ntfsprogs-${PV}" | ||
| 13 | SRC_URI[sha256sum] = "f20e36ee68074b845e3629e6bced4706ad053804cbaf062fbae60738f854170c" | ||
| 14 | |||
| 15 | UPSTREAM_CHECK_URI = "https://www.tuxera.com/community/open-source-ntfs-3g/" | ||
| 16 | UPSTREAM_CHECK_REGEX = "ntfs-3g_ntfsprogs-(?P<pver>\d+(\.\d+)+)\.tgz" | ||
| 17 | |||
| 18 | inherit autotools pkgconfig | ||
| 19 | |||
| 20 | PACKAGECONFIG ??= "" | ||
| 21 | PACKAGECONFIG[uuid] = "--with-uuid,--without-uuid,util-linux" | ||
| 22 | |||
| 23 | # required or it calls ldconfig at install step | ||
| 24 | EXTRA_OEMAKE = "LDCONFIG=echo" | ||
| 25 | |||
| 26 | PACKAGES =+ "ntfs-3g ntfsprogs libntfs-3g" | ||
| 27 | |||
| 28 | FILES:ntfs-3g = "${base_sbindir}/*.ntfs-3g ${bindir}/ntfs-3g* ${base_sbindir}/mount.ntfs" | ||
| 29 | RDEPENDS:ntfs-3g += "fuse" | ||
| 30 | RRECOMMENDS:ntfs-3g = "util-linux-mount" | ||
| 31 | |||
| 32 | FILES:ntfsprogs = "${base_sbindir}/* ${bindir}/* ${sbindir}/*" | ||
| 33 | FILES:libntfs-3g = "${libdir}/*${SOLIBS}" | ||
| 34 | |||
| 35 | do_install:append() { | ||
| 36 | # Standard mount will execute the program /sbin/mount.TYPE when called. | ||
| 37 | # Add a symbolic link to let mount find ntfs. | ||
| 38 | ln -sf mount.ntfs-3g ${D}${base_sbindir}/mount.ntfs | ||
| 39 | rmdir ${D}${libdir}/ntfs-3g | ||
| 40 | |||
| 41 | # Handle when usrmerge is in effect. Some files are installed to /sbin | ||
| 42 | # regardless of the value of ${base_sbindir}. | ||
| 43 | if [ "${base_sbindir}" != /sbin ] && [ -d ${D}/sbin ]; then | ||
| 44 | mkdir -p ${D}${base_sbindir} | ||
| 45 | mv ${D}/sbin/* ${D}${base_sbindir} | ||
| 46 | rmdir ${D}/sbin | ||
| 47 | fi | ||
| 48 | } | ||
| 49 | |||
| 50 | # Satisfy the -dev runtime dependency | ||
| 51 | ALLOW_EMPTY:${PN} = "1" | ||
| 52 | |||
| 53 | CVE_PRODUCT = "tuxera:ntfs-3g" | ||
