[package] update radvd to 1.5, select kmod-ipv6 (#5966)
[openwrt/svn-archive/archive.git] / net / yafc / Makefile
1 #
2 # Copyright (C) 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
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=yafc
11 PKG_VERSION:=1.1.1
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
15 PKG_SOURCE_URL:=@SF/$(PKG_NAME)
16 PKG_MD5SUM:=832d074183a36ee15b47553ed5962fce
17
18 include $(INCLUDE_DIR)/package.mk
19
20 define Package/yafc
21 SUBMENU:=FTP
22 SECTION:=net
23 CATEGORY:=Network
24 DEPENDS:=+libncurses +libreadline
25 TITLE:=Yafc is yet another ftp client.
26 URL:=http://yafc.sourceforge.net/
27 endef
28
29 # uses GNU configure
30
31 define Build/Compile
32 $(MAKE) -C $(PKG_BUILD_DIR)
33 endef
34
35 define Package/yafc/install
36 $(INSTALL_DIR) $(1)/usr/sbin
37 $(CP) $(PKG_BUILD_DIR)/src/yafc $(1)/usr/sbin/
38 endef
39
40 $(eval $(call BuildPackage,yafc))