996067d6b3
git-svn-id: svn://svn.openwrt.org/openwrt/packages@15244 3c298f89-4303-0410-b956-a3cf2f4a3e73
46 lines
1.0 KiB
Makefile
46 lines
1.0 KiB
Makefile
#
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=screen
|
|
PKG_VERSION:=4.0.3
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
PKG_SOURCE_URL:=ftp://ftp.uni-erlangen.de/pub/utilities/screen \
|
|
@GNU/screen
|
|
PKG_MD5SUM:=8506fd205028a96c741e4037de6e3c42
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/screen
|
|
SECTION:=utils
|
|
CATEGORY:=Utilities
|
|
DEPENDS:=+libncurses
|
|
TITLE:=Full-screen terminal window manager
|
|
URL:=http://www.gnu.org/software/screen/
|
|
endef
|
|
|
|
define Package/screen/description
|
|
Screen is a full-screen window manager that multiplexes a physical
|
|
terminal between several processes, typically interactive shells.
|
|
endef
|
|
|
|
define Build/Configure
|
|
$(call Build/Configure/Default,,\
|
|
LIBS="-lcrypt" \
|
|
)
|
|
endef
|
|
|
|
define Package/screen/install
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/screen $(1)/usr/sbin/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,screen))
|