2006-08-08 09:38:23 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
# $Id$
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=screen
|
|
|
|
PKG_VERSION:=4.0.2
|
|
|
|
PKG_RELEASE:=1
|
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
2006-10-28 22:43:08 +00:00
|
|
|
PKG_SOURCE_URL:=@GNU/screen
|
|
|
|
PKG_MD5SUM:=ed68ea9b43d9fba0972cb017a24940a1
|
2006-08-08 09:38:23 +00:00
|
|
|
PKG_CAT:=zcat
|
|
|
|
|
|
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
|
|
|
PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
|
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
define Package/screen
|
|
|
|
SECTION:=utils
|
|
|
|
CATEGORY:=Utilities
|
|
|
|
DEPENDS:=+libncurses
|
|
|
|
TITLE:=Full-screen terminal window manager
|
2006-10-28 22:43:08 +00:00
|
|
|
DESCRIPTION:=\
|
|
|
|
Screen is a full-screen window manager that multiplexes a physical\\\
|
|
|
|
terminal between several processes, typically interactive shells.
|
2006-08-08 09:38:23 +00:00
|
|
|
URL:=http://www.gnu.org/software/screen/
|
|
|
|
endef
|
|
|
|
|
2006-10-28 22:43:08 +00:00
|
|
|
# uses GNU configure
|
2006-08-08 09:38:23 +00:00
|
|
|
|
|
|
|
define Package/screen/install
|
2006-11-23 00:29:07 +00:00
|
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/screen $(1)/usr/sbin/
|
2006-08-08 09:38:23 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,screen))
|