Makefile 850 B

123456789101112131415161718192021222324252627
  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:= libXp
  5. PKG_VERSION:= 1.0.3
  6. PKG_RELEASE:= 1
  7. PKG_HASH:= f6b8cc4ef05d3eafc9ef5fc72819dd412024b4ed60197c0d5914758125817e9c
  8. PKG_DESCR:= x11 printing library
  9. PKG_SECTION:= x11/libs
  10. PKG_BUILDDEP:= libXext printproto
  11. PKG_SITES:= http://www.x.org/releases/individual/lib/
  12. PKG_LIBNAME:= libxp
  13. PKG_OPTS:= dev
  14. DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.gz
  15. include $(ADK_TOPDIR)/mk/package.mk
  16. $(eval $(call PKG_template,LIBXP,libxp,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION},${PKG_OPTS}))
  17. libxp-install:
  18. ${INSTALL_DIR} ${IDIR_LIBXP}/usr/lib
  19. ${CP} ${WRKINST}/usr/lib/libXp.so* ${IDIR_LIBXP}/usr/lib
  20. include ${ADK_TOPDIR}/mk/pkg-bottom.mk