[PATCH] Upgrade libgpg-error from v1.6 to v1.7.
[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
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=minicom
11 PKG_VERSION:=2.3
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=http://alioth.debian.org/download.php/2332/
16 PKG_MD5SUM:=0ebe7a91898384ca906787cc4e2c3f25
17
18 PKG_FIXUP = libtool
19
20 include $(INCLUDE_DIR)/package.mk
21
22 define Package/minicom
23 SECTION:=utils
24 CATEGORY:=Utilities
25 DEPENDS:=+libncurses
26 TITLE:=Terminal emulation program
27 URL:=http://alioth.debian.org/projects/minicom/
28 SUBMENU:=terminal
29 endef
30
31 define Package/minicom/install
32 $(INSTALL_DIR) $(1)/usr/sbin
33 $(INSTALL_BIN) $(PKG_BUILD_DIR)/src/$(PKG_NAME) $(1)/usr/sbin/
34 $(INSTALL_BIN) $(PKG_BUILD_DIR)/src/ascii-xfr $(1)/usr/sbin/
35 endef
36
37 $(eval $(call BuildPackage,minicom))