diff options
author | Khem Raj <raj.khem@gmail.com> | 2017-03-28 10:48:31 -0700 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2017-04-05 19:28:28 +0200 |
commit | 09a82e1fb029bbfacf56ff960e026d800a6047bc (patch) | |
tree | 2830cdaaa2e86cb659594abfad6ffb5394bc731f /meta-filesystems/recipes-filesystems/ntfs-3g-ntfsprogs/ntfs-3g-ntfsprogs_2017.3.23.bb | |
parent | 217d65c7c5627dee3fcd60c725d58f3430514788 (diff) | |
download | meta-openembedded-09a82e1fb029bbfacf56ff960e026d800a6047bc.tar.gz |
ntfs-3g-ntfsprogs: Upgrade to 2017.3.23
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-filesystems/recipes-filesystems/ntfs-3g-ntfsprogs/ntfs-3g-ntfsprogs_2017.3.23.bb')
-rw-r--r-- | meta-filesystems/recipes-filesystems/ntfs-3g-ntfsprogs/ntfs-3g-ntfsprogs_2017.3.23.bb | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/meta-filesystems/recipes-filesystems/ntfs-3g-ntfsprogs/ntfs-3g-ntfsprogs_2017.3.23.bb b/meta-filesystems/recipes-filesystems/ntfs-3g-ntfsprogs/ntfs-3g-ntfsprogs_2017.3.23.bb new file mode 100644 index 000000000..63627deda --- /dev/null +++ b/meta-filesystems/recipes-filesystems/ntfs-3g-ntfsprogs/ntfs-3g-ntfsprogs_2017.3.23.bb | |||
@@ -0,0 +1,39 @@ | |||
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 = "GPLv2 & LGPLv2" | ||
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 | S = "${WORKDIR}/ntfs-3g_ntfsprogs-${PV}" | ||
11 | SRC_URI[md5sum] = "d97474ae1954f772c6d2fa386a6f462c" | ||
12 | SRC_URI[sha256sum] = "3e5a021d7b761261836dcb305370af299793eedbded731df3d6943802e1262d5" | ||
13 | |||
14 | inherit autotools pkgconfig | ||
15 | |||
16 | PACKAGECONFIG ??= "" | ||
17 | PACKAGECONFIG[uuid] = "--with-uuid,--without-uuid,util-linux" | ||
18 | |||
19 | # required or it calls ldconfig at install step | ||
20 | EXTRA_OEMAKE = "LDCONFIG=echo" | ||
21 | |||
22 | PACKAGES =+ "ntfs-3g ntfsprogs libntfs-3g" | ||
23 | |||
24 | FILES_ntfs-3g = "${base_sbindir}/*.ntfs-3g ${bindir}/ntfs-3g* ${base_sbindir}/mount.ntfs" | ||
25 | RDEPENDS_ntfs-3g += "fuse" | ||
26 | RRECOMMENDS_ntfs-3g = "util-linux-mount" | ||
27 | |||
28 | FILES_ntfsprogs = "${base_sbindir}/* ${bindir}/* ${sbindir}/*" | ||
29 | FILES_libntfs-3g = "${libdir}/*${SOLIBS}" | ||
30 | |||
31 | do_install_append() { | ||
32 | # Standard mount will execute the program /sbin/mount.TYPE | ||
33 | # when called. Add the symbolic to let mount could find ntfs. | ||
34 | ln -sf mount.ntfs-3g ${D}/${base_sbindir}/mount.ntfs | ||
35 | rmdir ${D}${libdir}/ntfs-3g | ||
36 | } | ||
37 | |||
38 | # Satisfy the -dev runtime dependency | ||
39 | ALLOW_EMPTY_${PN} = "1" | ||