[packages] utils/fconfig: update to version 20080329
[openwrt/svn-archive/archive.git] / utils / screen / 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:=screen
12 PKG_VERSION:=4.0.3
13 PKG_RELEASE:=1
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
16 PKG_SOURCE_URL:=ftp://ftp.uni-erlangen.de/pub/utilities/screen \
17 @GNU/screen
18 PKG_MD5SUM:=8506fd205028a96c741e4037de6e3c42
19
20 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
21 PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
22
23 include $(INCLUDE_DIR)/package.mk
24
25 define Package/screen
26 SECTION:=utils
27 CATEGORY:=Utilities
28 DEPENDS:=+libncurses
29 TITLE:=Full-screen terminal window manager
30 URL:=http://www.gnu.org/software/screen/
31 endef
32
33 define Package/screen/description
34 Screen is a full-screen window manager that multiplexes a physical
35 terminal between several processes, typically interactive shells.
36 endef
37
38 define Build/Configure
39 $(call Build/Configure/Default,,\
40 LIBS="-lcrypt" \
41 )
42 endef
43
44 define Package/screen/install
45 $(INSTALL_DIR) $(1)/usr/sbin
46 $(INSTALL_BIN) $(PKG_BUILD_DIR)/screen $(1)/usr/sbin/
47 endef
48
49 $(eval $(call BuildPackage,screen))