df102ba4844a74f3b97387f6710632cb52671f4b
[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.2531
13 PKG_RELEASE:=1
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tgz
16 PKG_SOURCE_URL:=http://www.ntfs-3g.org/
17 PKG_MD5SUM:=69374cd09803c5fdbb5dabd1d704b9fe
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 --with-fuse=external \
40 , \
41 ac_cv_path_LDCONFIG=""
42
43 define Build/Compile
44 $(MAKE) -C $(PKG_BUILD_DIR) \
45 ARCH="$(LINUX_KARCH)" \
46 CROSS_COMPILE="$(TARGET_CROSS)" \
47 DESTDIR="$(PKG_INSTALL_DIR)" \
48 all install
49 endef
50
51 define Build/InstallDev
52 mkdir -p $(1)/usr/include
53 $(CP) $(PKG_INSTALL_DIR)/usr/include/ntfs-3g $(1)/usr/include/
54 mkdir -p $(1)/usr/lib
55 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libntfs-3g.{a,so*} $(1)/usr/lib/
56 endef
57
58 define Package/ntfs-3g/install
59 $(INSTALL_DIR) $(1)/usr/bin
60 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/ntfs-3g $(1)/usr/bin/
61 $(INSTALL_DIR) $(1)/usr/lib
62 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libntfs-3g.so.* $(1)/usr/lib/
63 endef
64
65 $(eval $(call BuildPackage,ntfs-3g))