[packages] apr: ensure rlimit support, fixes httpd mod_cgi link failures, upstream...
[openwrt/svn-archive/archive.git] / net / yafc / Makefile
1 #
2 # Copyright (C) 2008-2010 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=yafc
11 PKG_VERSION:=1.1.1
12 PKG_RELEASE:=2
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
15 PKG_SOURCE_URL:=@SF/$(PKG_NAME)
16 PKG_MD5SUM:=832d074183a36ee15b47553ed5962fce
17
18 PKG_FIXUP:=libtool
19 PKG_REMOVE_FILES:=autogen.sh aclocal.m4
20
21 include $(INCLUDE_DIR)/package.mk
22
23 define Package/yafc
24 SUBMENU:=File Transfer
25 SECTION:=net
26 CATEGORY:=Network
27 DEPENDS:=+libncurses +libreadline
28 TITLE:=Yafc is yet another ftp client.
29 URL:=http://yafc.sourceforge.net/
30 endef
31
32 # uses GNU configure
33 CONFIGURE_VARS += \
34 bash_cv_func_sigsetjmp=missing
35
36 define Build/Compile
37 $(MAKE) -C $(PKG_BUILD_DIR)
38 endef
39
40 define Package/yafc/install
41 $(INSTALL_DIR) $(1)/usr/sbin
42 $(CP) $(PKG_BUILD_DIR)/src/yafc $(1)/usr/sbin/
43 endef
44
45 $(eval $(call BuildPackage,yafc))