Makefile 997 B

123456789101112131415161718192021222324252627282930
  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:= xorgproto
  5. PKG_VERSION:= 2021.5
  6. PKG_RELEASE:= 1
  7. PKG_DESCR:= xorg extension headers
  8. PKG_SECTION:= dev/header
  9. PKG_HASH:= be6ddd6590881452fdfa170c1c9ff87209a98d36155332cbf2ccbc431add86ff
  10. PKG_SITES:= http://www.x.org/releases/individual/proto/
  11. PKG_OPTS:= dev devonly
  12. DISTFILES:= $(PKG_NAME)-$(PKG_VERSION).tar.gz
  13. include $(ADK_TOPDIR)/mk/host.mk
  14. include $(ADK_TOPDIR)/mk/package.mk
  15. $(eval $(call HOST_template,XORGPROTO,xorgproto,$(PKG_VERSION)-$(PKG_RELEASE)))
  16. $(eval $(call PKG_template,XORGPROTO,xorgproto,$(PKG_VERSION)-$(PKG_RELEASE),$(PKG_DEPENDS),$(PKG_DESCR),$(PKG_SECTION),$(PKG_OPTS)))
  17. HOST_STYLE:= auto
  18. post-install:
  19. $(CP) ${WRKINST}/usr/share/pkgconfig/*.pc \
  20. ${STAGING_TARGET_DIR}/usr/lib/pkgconfig/
  21. include $(ADK_TOPDIR)/mk/host-bottom.mk
  22. include $(ADK_TOPDIR)/mk/pkg-bottom.mk