[packages] pure-ftpd: update to 1.0.28
[openwrt/svn-archive/archive.git] / net / curlftpfs / Makefile
1 # This is free software, licensed under the GNU General Public License v2.
2 # See /LICENSE for more information.
3
4 include $(TOPDIR)/rules.mk
5
6 PKG_NAME:=curlftpfs
7 PKG_VERSION:=0.9.2
8 PKG_RELEASE:=1
9
10 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
11 PKG_SOURCE_URL:=@SF/curlftpfs
12 PKG_MD5SUM:=b452123f755114cd4461d56c648d9f12
13
14 PKG_BUILD_DEPENDS:=libiconv
15
16 include $(INCLUDE_DIR)/package.mk
17
18 define Package/curlftpfs
19 SECTION:=net
20 CATEGORY:=Network
21 DEPENDS:=+libcurl +libfuse +glib2
22 TITLE:=CurlFtpFS
23 endef
24
25 define Package/curlftpfs/description
26 CurlFtpFS is a filesystem for accessing FTP hosts
27 based on FUSE and libcurl.
28 endef
29
30 EXTRA_CFLAGS += -I$(STAGING_DIR)/usr/lib/libiconv/include -DICONV_CONST=const
31
32 define Package/curlftpfs/install
33 $(INSTALL_DIR) $(1)/usr/bin
34 $(INSTALL_BIN) $(PKG_BUILD_DIR)/curlftpfs $(1)/usr/bin/
35 endef
36
37 $(eval $(call BuildPackage,curlftpfs))
38