Update p910nd to 0.92 (#3729)
[openwrt/svn-archive/archive.git] / utils / ntfs-3g / Makefile
1 #
2 # Copyright (C) 2007-2008 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 # $Id$
8
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=ntfs-3g
12 PKG_VERSION:=1.616
13 PKG_RELEASE:=2
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tgz
16 PKG_SOURCE_URL:=http://www.ntfs-3g.org/
17 PKG_MD5SUM:=fdb1c55f00263c962a52d0707a6d075e
18
19 PKG_BUILD_DEPENDS:=libfuse
20
21 include $(INCLUDE_DIR)/package.mk
22
23 define Package/ntfs-3g
24 TITLE:=NTFS-3G
25 DEPENDS:=+libfuse +fuse-utils +libpthread
26 SECTION:=utils
27 CATEGORY:=Utilities
28 URL:=http://www.ntfs-3g.org
29 SUBMENU:=filesystem
30 endef
31
32 define Package/ntfs-3g/description
33 This package contains the third generation Read/Write NTFS driver
34 endef
35
36 CONFIGURE_ARGS += \
37 --enable-shared \
38 --enable-static \
39 , \
40 ac_cv_path_LDCONFIG=""
41
42 define Build/Compile
43 $(MAKE) -C $(PKG_BUILD_DIR) \
44 ARCH="$(LINUX_KARCH)" \
45 CROSS_COMPILE="$(TARGET_CROSS)" \
46 DESTDIR="$(PKG_INSTALL_DIR)" \
47 all install
48 endef
49
50 define Build/InstallDev
51 mkdir -p $(1)/usr/include
52 $(CP) $(PKG_INSTALL_DIR)/usr/include/ntfs-3g $(1)/usr/include/
53 mkdir -p $(1)/usr/lib
54 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libntfs-3g.{a,so*} $(1)/usr/lib/
55 endef
56
57 define Package/ntfs-3g/install
58 $(INSTALL_DIR) $(1)/usr/bin
59 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/ntfs-3g $(1)/usr/bin/
60 $(INSTALL_DIR) $(1)/usr/lib
61 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libntfs-3g.so.* $(1)/usr/lib/
62 endef
63
64 $(eval $(call BuildPackage,ntfs-3g))