Makefile 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  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 $(ADK_TOPDIR)/rules.mk
  4. PKG_NAME:= rxvt-unicode
  5. PKG_VERSION:= 9.30
  6. PKG_RELEASE:= 1
  7. PKG_HASH:= fe1c93d12f385876457a989fc3ae05c0915d2692efc59289d0f70fabe5b44d2d
  8. PKG_DESCR:= terminal emulator with unicode support
  9. PKG_SECTION:= x11/apps
  10. PKG_DEPENDS:= libx11 fontconfig libxft libxml2 gdk-pixbuf libptytty
  11. PKG_DEPENDS+= libffi libmount
  12. PKG_BUILDDEP:= libX11 fontconfig libXft libxml2 gdk-pixbuf libptytty
  13. PKG_BUILDDEP+= libffi util-linux
  14. PKG_NEEDS:= c++
  15. PKG_URL:= http://software.schmorp.de/pkg/rxvt-unicode.html
  16. PKG_SITES:= http://dist.schmorp.de/rxvt-unicode/
  17. DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.bz2
  18. include $(ADK_TOPDIR)/mk/package.mk
  19. $(eval $(call PKG_template,RXVT_UNICODE,rxvt-unicode,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  20. TARGET_LDFLAGS+= -lpthread
  21. CONFIGURE_ARGS+= --disable-perl
  22. rxvt-unicode-install:
  23. $(INSTALL_DIR) $(IDIR_RXVT_UNICODE)/usr/bin
  24. $(INSTALL_BIN) $(WRKINST)/usr/bin/urxvt \
  25. $(IDIR_RXVT_UNICODE)/usr/bin
  26. include ${ADK_TOPDIR}/mk/pkg-bottom.mk