[packages] btpd: Add default value for bool config options
[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
20 include $(INCLUDE_DIR)/package.mk
21
22 define Package/yafc
23 SUBMENU:=FTP
24 SECTION:=net
25 CATEGORY:=Network
26 DEPENDS:=+libncurses +libreadline
27 TITLE:=Yafc is yet another ftp client.
28 URL:=http://yafc.sourceforge.net/
29 endef
30
31 # uses GNU configure
32
33 define Build/Compile
34 $(MAKE) -C $(PKG_BUILD_DIR)
35 endef
36
37 define Package/yafc/install
38 $(INSTALL_DIR) $(1)/usr/sbin
39 $(CP) $(PKG_BUILD_DIR)/src/yafc $(1)/usr/sbin/
40 endef
41
42 $(eval $(call BuildPackage,yafc))