2007-11-24 17:09:25 +01:00
|
|
|
#############################################################
|
|
|
|
#
|
|
|
|
# ntfs-3g
|
|
|
|
#
|
|
|
|
#############################################################
|
2011-01-07 19:20:40 +01:00
|
|
|
|
2012-03-11 22:47:56 +01:00
|
|
|
NTFS_3G_VERSION = 2012.1.15
|
2011-10-18 14:32:10 +02:00
|
|
|
NTFS_3G_SOURCE = ntfs-3g_ntfsprogs-$(NTFS_3G_VERSION).tgz
|
2011-01-07 19:20:40 +01:00
|
|
|
NTFS_3G_SITE = http://tuxera.com/opensource
|
2011-08-10 00:12:49 +02:00
|
|
|
NTFS_3G_CONF_OPT = --disable-ldconfig
|
2011-01-07 19:20:40 +01:00
|
|
|
NTFS_3G_INSTALL_STAGING = YES
|
2011-10-18 14:32:10 +02:00
|
|
|
NTFS_3G_DEPENDENCIES = host-pkg-config
|
|
|
|
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBFUSE),y)
|
|
|
|
NTFS_3G_CONF_OPT += --with-fuse=external
|
|
|
|
NTFS_3G_DEPENDENCIES += libfuse
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(BR2_PACKAGE_UTIL_LINUX_LIBUUID),y)
|
|
|
|
NTFS_3G_DEPENDENCIES += util-linux
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(BR2_PACKAGE_NTFS_3G_ENCRYPTED),y)
|
|
|
|
NTFS_3G_CONF_OPT += --enable-crypto
|
|
|
|
NTFS_3G_DEPENDENCIES += gnutls
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifneq ($(BR2_PACKAGE_NTFS_3G_NTFSPROGS),y)
|
|
|
|
NTFS_3G_CONF_OPT += --disable-ntfsprogs
|
|
|
|
endif
|
2009-03-30 21:10:37 +02:00
|
|
|
|
2011-09-29 21:57:43 +02:00
|
|
|
$(eval $(call AUTOTARGETS))
|