remove a few obsolete dependencies now that dependency propagation is fixed
[openwrt/svn-archive/archive.git] / utils / minicom / Makefile
1 #
2 # Copyright (C) 2006-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:=minicom
12 PKG_VERSION:=2.3
13 PKG_RELEASE:=1
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
16 PKG_SOURCE_URL:=http://alioth.debian.org/download.php/2332/
17 PKG_MD5SUM:=0ebe7a91898384ca906787cc4e2c3f25
18
19 PKG_FIXUP = libtool
20
21 include $(INCLUDE_DIR)/package.mk
22
23 define Package/minicom
24 SECTION:=utils
25 CATEGORY:=Utilities
26 DEPENDS:=+libncurses
27 TITLE:=Terminal emulation program
28 URL:=http://alioth.debian.org/projects/minicom/
29 SUBMENU:=terminal
30 endef
31
32 define Package/minicom/install
33 $(INSTALL_DIR) $(1)/usr/sbin
34 $(INSTALL_BIN) $(PKG_BUILD_DIR)/src/$(PKG_NAME) $(1)/usr/sbin/
35 $(INSTALL_BIN) $(PKG_BUILD_DIR)/src/ascii-xfr $(1)/usr/sbin/
36 endef
37
38 $(eval $(call BuildPackage,minicom))