Makefile 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. # This file is part of the OpenADK project. OpenADK is copyrighted
  2. # material, please see the LICENCE file in the top-level directory.
  3. include $(TOPDIR)/rules.mk
  4. PKG_NAME:= rxvt-unicode
  5. PKG_VERSION:= 9.19
  6. PKG_RELEASE:= 1
  7. PKG_MD5SUM:= 45ad197eb9b5a840c0f65e3a8131921c
  8. PKG_DESCR:= x-term with unicode support
  9. PKG_SECTION:= x11/apps
  10. PKG_DEPENDS:= libx11 fontconfig libxft libxml2 gdk-pixbuf libstdcxx
  11. PKG_BUILDDEP:= libX11 fontconfig libXft libxml2 gdk-pixbuf
  12. PKG_URL:= http://software.schmorp.de/pkg/rxvt-unicode.html
  13. PKG_SITES:= http://dist.schmorp.de/rxvt-unicode/
  14. DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.bz2
  15. include $(TOPDIR)/mk/package.mk
  16. $(eval $(call PKG_template,RXVT_UNICODE,rxvt-unicode,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  17. TARGET_LDFLAGS+= -lpthread
  18. CONFIGURE_ARGS+= --disable-perl \
  19. --disable-utmp \
  20. --disable-afterimage
  21. rxvt-unicode-install:
  22. $(INSTALL_DIR) $(IDIR_RXVT_UNICODE)/usr/bin
  23. $(INSTALL_BIN) $(WRKINST)/usr/bin/urxvt \
  24. $(IDIR_RXVT_UNICODE)/usr/bin
  25. include ${TOPDIR}/mk/pkg-bottom.mk