Makefile 837 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:= xproto
  5. PKG_VERSION:= 7.0.20
  6. PKG_RELEASE:= 1
  7. PKG_DESCR:= X Window System Core Protocol headers
  8. PKG_SECTION:= x11/devel
  9. PKG_MD5SUM:= 18320ab36999f3770b14463ed5a2d6cb
  10. PKG_SITES:= ${MASTER_SITE_XORG}
  11. include $(TOPDIR)/mk/package.mk
  12. $(eval $(call PKG_template,XPROTO,xproto,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION},${PKG_OPTS}))
  13. post-install:
  14. ${INSTALL_DIR} ${IDIR_XPROTO}/usr/include
  15. ${CP} ${WRKINST}/usr/include/X11 ${IDIR_XPROTO}/usr/include
  16. ${INSTALL_DIR} ${IDIR_XPROTO}/usr/lib/pkgconfig
  17. ${INSTALL_DATA} ${WRKINST}/usr/lib/pkgconfig/xproto.pc \
  18. ${IDIR_XPROTO}/usr/lib/pkgconfig
  19. include ${TOPDIR}/mk/pkg-bottom.mk