summaryrefslogtreecommitdiff
path: root/package/rxvt-unicode
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2010-01-22 18:09:11 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2010-01-22 18:09:11 +0100
commitdfce14c3ca2ba29afe75afd6ef52a31ba745ec66 (patch)
tree57cf6dd16e602d2303dc5936a5a0b63ec593d649 /package/rxvt-unicode
parentd91f3efc7399b0ce3b9fde65ce26fe8a4b19e12b (diff)
add x-terminal application with unicode support
Diffstat (limited to 'package/rxvt-unicode')
-rw-r--r--package/rxvt-unicode/Makefile34
1 files changed, 34 insertions, 0 deletions
diff --git a/package/rxvt-unicode/Makefile b/package/rxvt-unicode/Makefile
new file mode 100644
index 000000000..e6ac62eb3
--- /dev/null
+++ b/package/rxvt-unicode/Makefile
@@ -0,0 +1,34 @@
+# This file is part of the OpenADK project. OpenADK is copyrighted
+# material, please see the LICENCE file in the top-level directory.
+
+include $(TOPDIR)/rules.mk
+
+PKG_NAME:= rxvt-unicode
+PKG_VERSION:= 9.07
+PKG_RELEASE:= 1
+PKG_MD5SUM:= 49bb52c99e002bf85eb41d8385d903b5
+PKG_DESCR:= x-term with unicode support
+PKG_SECTION:= x11
+PKG_DEPENDS:= libx11
+PKG_BUILDDEP+= libX11
+PKG_URL:= http://software.schmorp.de/pkg/rxvt-unicode.html
+PKG_SITES:= http://dist.schmorp.de/rxvt-unicode/
+
+DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.bz2
+
+include $(TOPDIR)/mk/package.mk
+
+$(eval $(call PKG_template,RXVT_UNICODE,$(PKG_NAME),$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
+
+CONFIGURE_STYLE:= gnu
+CONFIGURE_ARGS+= --disable-perl \
+ --disable-utmp
+BUILD_STYLE:= auto
+INSTALL_STYLE:= auto
+
+post-install:
+ $(INSTALL_DIR) $(IDIR_RXVT_UNICODE)/usr/bin
+ $(INSTALL_BIN) $(WRKINST)/usr/bin/urxvt \
+ $(IDIR_RXVT_UNICODE)/usr/bin
+
+include ${TOPDIR}/mk/pkg-bottom.mk