Add package xterm

Signed-off-by: Paul Jones <paul@pauljones.id.au>
This commit is contained in:
Paul Jones 2010-06-12 10:45:13 +10:00 committed by Thomas Petazzoni
parent bb43b24086
commit 6b92969386
3 changed files with 20 additions and 0 deletions

View File

@ -139,6 +139,7 @@ source "package/synergy/Config.in"
source "package/torsmo/Config.in"
source "package/x11vnc/Config.in"
source "package/xstroke/Config.in"
source "package/xterm/Config.in"
source "package/xvkbd/Config.in"
endmenu

6
package/xterm/Config.in Normal file
View File

@ -0,0 +1,6 @@
config BR2_PACKAGE_XTERM
bool "xterm"
depends on BR2_PACKAGE_XORG7
help
xterm terminal emulator

13
package/xterm/xterm.mk Normal file
View File

@ -0,0 +1,13 @@
#############################################################
#
# xterm
#
#############################################################
XTERM_VERSION:=259
XTERM_SOURCE:=xterm-$(XTERM_VERSION).tgz
XTERM_SITE:=ftp://invisible-island.net/xterm
XTERM_DEPENDENCIES = xserver_xorg-server
XTERM_INSTALL_TARGET_OPT = DESTDIR=$(TARGET_DIR) install
$(eval $(call AUTOTARGETS,package,xterm))