2010-06-21 22:26:33 +00:00
|
|
|
#
|
2011-11-20 14:51:31 +00:00
|
|
|
# Copyright (C) 2010-2011 OpenWrt.org
|
2010-06-21 22:26:33 +00:00
|
|
|
# Copyright (C) 2010 Gianluigi Tiesi <sherpya@netfarm.it>
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=ntfsprogs
|
|
|
|
PKG_VERSION:=2.0.0
|
2011-11-20 14:51:31 +00:00
|
|
|
PKG_RELEASE:=2
|
2010-06-21 22:26:33 +00:00
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
|
|
PKG_SOURCE_URL:=@SF/linux-ntfs
|
|
|
|
PKG_MD5SUM:=2c402b647bb7aeb1d3f8ce1cc354fd68
|
|
|
|
|
2012-06-11 21:18:33 +00:00
|
|
|
PKG_FIXUP:=autoreconf
|
2010-07-12 16:40:33 +00:00
|
|
|
PKG_INSTALL:=1
|
2011-11-20 14:51:31 +00:00
|
|
|
PKG_BUILD_DEPENDS:=libgcrypt
|
2010-07-12 16:40:33 +00:00
|
|
|
|
2010-06-21 22:26:33 +00:00
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
define Package/ntfsprogs
|
2011-11-20 14:51:31 +00:00
|
|
|
SECTION:=utils
|
|
|
|
CATEGORY:=Utilities
|
|
|
|
SUBMENU:=Filesystem
|
|
|
|
TITLE:=Linux-NTFS
|
2013-08-04 12:03:16 +00:00
|
|
|
DEPENDS:=+libuuid
|
2011-11-20 14:51:31 +00:00
|
|
|
URL:=http://www.linux-ntfs.org/
|
|
|
|
MAINTAINER:=Gianluigi Tiesi <sherpya@netfarm.it>
|
2010-06-21 22:26:33 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/ntfsprogs/description
|
|
|
|
Tools for managing NTFS volumes from Linux
|
|
|
|
endef
|
|
|
|
|
|
|
|
CONFIGURE_ARGS += \
|
|
|
|
--enable-shared \
|
|
|
|
--enable-static \
|
2013-08-04 12:03:16 +00:00
|
|
|
--with-uuid \
|
2010-07-12 16:40:33 +00:00
|
|
|
--disable-crypto \
|
2010-06-21 22:26:33 +00:00
|
|
|
--disable-gnome-vfs \
|
|
|
|
--disable-ntfsmount
|
|
|
|
|
|
|
|
define Build/InstallDev
|
|
|
|
$(INSTALL_DIR) $(1)/usr/include
|
2010-07-12 16:40:33 +00:00
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/include/ntfs $(1)/usr/include/
|
2010-06-21 22:26:33 +00:00
|
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
2010-07-12 16:40:33 +00:00
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libntfs.{la,a,so*} $(1)/usr/lib/
|
2010-06-21 22:26:33 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/ntfsprogs/install
|
|
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
2010-07-12 16:40:33 +00:00
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libntfs.so.* $(1)/usr/lib/
|
2010-06-21 22:26:33 +00:00
|
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
2010-07-12 16:40:33 +00:00
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/bin/ntfsfix $(1)/usr/bin/
|
2010-06-21 22:26:33 +00:00
|
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
2010-07-12 16:40:33 +00:00
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/sbin/* $(1)/usr/sbin/
|
2010-06-21 22:26:33 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,ntfsprogs))
|