12345678910111213141516171819202122232425262728293031323334 |
- # 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.19
- PKG_RELEASE:= 1
- PKG_MD5SUM:= 45ad197eb9b5a840c0f65e3a8131921c
- PKG_DESCR:= x-term with unicode support
- PKG_SECTION:= x11/apps
- PKG_DEPENDS:= libx11 fontconfig libxft libxml2 gdk-pixbuf
- PKG_BUILDDEP:= libX11 fontconfig libXft libxml2 gdk-pixbuf
- PKG_URL:= http://software.schmorp.de/pkg/rxvt-unicode.html
- PKG_SITES:= http://dist.schmorp.de/rxvt-unicode/
- PKG_NEED_CXX:= 1
- DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.bz2
- include $(TOPDIR)/mk/package.mk
- $(eval $(call PKG_template,RXVT_UNICODE,rxvt-unicode,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
- TARGET_LDFLAGS+= -lpthread
- CONFIGURE_ARGS+= --disable-perl \
- --disable-utmp \
- --disable-afterimage
- rxvt-unicode-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
|