more package submenus
[openwrt/svn-archive/archive.git] / utils / picocom / Makefile
1 #
2 # Copyright (C) 2006 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:=picocom
12 PKG_VERSION:=1.4
13 PKG_RELEASE:=1
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
16 PKG_SOURCE_URL:=http://efault.net/npat/hacks/picocom/dist/
17 PKG_MD5SUM:=08fcc5f6bb9e7676a2569386d5ea9f70
18
19 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
20
21 include $(INCLUDE_DIR)/package.mk
22
23 define Package/picocom
24 SECTION:=utils
25 CATEGORY:=Utilities
26 TITLE:=A minimal dumb-terminal emulation program
27 URL:=http://efault.net/npat/hacks/picocom/
28 SUBMENU:=terminal
29 endef
30
31 define Package/picocom/description
32 As its name suggests, picocom is a minimal dumb-terminal emulation
33 program. It is, in principle, very much like minicom, only it's pico
34 instead of mini! It was designed to serve as a simple, manual, modem
35 configuration, testing, and debugging tool. It has also served (quite
36 well) as a low-tech "terminal-window" to allow operator intervention
37 in PPP connection scripts. It could also prove useful in many other
38 similar tasks.
39 endef
40
41 define Build/Configure
42 endef
43
44 define Build/Compile
45 $(MAKE) -C $(PKG_BUILD_DIR) \
46 $(TARGET_CONFIGURE_OPTS) \
47 CFLAGS="$(TARGET_CFLAGS) -I$(STAGING_DIR)/usr/include -I$(STAGING_DIR)/include" \
48 LDFLAGS="-L$(STAGING_DIR)/usr/lib -L$(STAGING_DIR)/lib" \
49 picocom
50 endef
51
52 define Package/picocom/install
53 $(INSTALL_DIR) $(1)/usr/bin
54 $(INSTALL_BIN) $(PKG_BUILD_DIR)/picocom $(1)/usr/bin/
55 endef
56
57 $(eval $(call BuildPackage,picocom))