Makefile 881 B

12345678910111213141516171819202122232425
  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:= resourceproto
  5. PKG_VERSION:= 1.1.0
  6. PKG_RELEASE:= 1
  7. PKG_DESCR:= Resource extension headers
  8. PKG_SECTION:= x11/devel
  9. PKG_MD5SUM:= 587333b4995a3e11ebe4c8ba2742efaf
  10. PKG_SITES:= ${MASTER_SITE_XORG}
  11. include $(TOPDIR)/mk/package.mk
  12. $(eval $(call PKG_template,RESOURCEPROTO,resourceproto,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION},${PKG_OPTS}))
  13. post-install:
  14. ${INSTALL_DIR} ${IDIR_RESOURCEPROTO}/usr/include
  15. ${CP} ${WRKINST}/usr/include/X11 ${IDIR_RESOURCEPROTO}/usr/include
  16. ${INSTALL_DIR} ${IDIR_RESOURCEPROTO}/usr/lib/pkgconfig
  17. ${INSTALL_DATA} ${WRKINST}/usr/lib/pkgconfig/resourceproto.pc \
  18. ${IDIR_RESOURCEPROTO}/usr/lib/pkgconfig
  19. include ${TOPDIR}/mk/pkg-bottom.mk