Smartmontools compiles with ulibcxx, so use it instead of libstdcpp
[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 include $(INCLUDE_DIR)/package.mk
21
22 define Package/screen
23 SECTION:=utils
24 CATEGORY:=Utilities
25 DEPENDS:=+libncurses
26 TITLE:=Full-screen terminal window manager
27 URL:=http://www.gnu.org/software/screen/
28 endef
29
30 define Package/screen/description
31 Screen is a full-screen window manager that multiplexes a physical
32 terminal between several processes, typically interactive shells.
33 endef
34
35 define Build/Configure
36 $(call Build/Configure/Default,,\
37 LIBS="-lcrypt" \
38 )
39 endef
40
41 define Package/screen/install
42 $(INSTALL_DIR) $(1)/usr/sbin
43 $(INSTALL_BIN) $(PKG_BUILD_DIR)/screen $(1)/usr/sbin/
44 endef
45
46 $(eval $(call BuildPackage,screen))