Makefile 961 B

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 $(TOPDIR)/rules.mk
  4. PKG_NAME:= libXau
  5. PKG_VERSION:= 1.0.7
  6. PKG_RELEASE:= 2
  7. PKG_MD5SUM:= 3ab7a4d1aac1b7f8ccc6b9755a19f252
  8. PKG_DESCR:= X11 authorisation library
  9. PKG_SECTION:= x11/libs
  10. PKG_BUILDDEP:= xproto libXau-host
  11. PKG_SITES:= ${MASTER_SITE_XORG}
  12. PKG_LIBNAME:= libxau
  13. PKG_OPTS:= dev
  14. ifeq ($(ADK_STATIC),y)
  15. PKG_OPTS+= libonly
  16. endif
  17. include $(TOPDIR)/mk/host.mk
  18. include $(TOPDIR)/mk/package.mk
  19. $(eval $(call HOST_template,LIBXAU,libxau,$(PKG_VERSION)-${PKG_RELEASE}))
  20. $(eval $(call PKG_template,LIBXAU,libxau,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION},${PKG_OPTS}))
  21. HOST_STYLE:= auto
  22. libxau-install:
  23. ${INSTALL_DIR} ${IDIR_LIBXAU}/usr/lib
  24. ${CP} ${WRKINST}/usr/lib/libXau.so* ${IDIR_LIBXAU}/usr/lib/
  25. include ${TOPDIR}/mk/host-bottom.mk
  26. include ${TOPDIR}/mk/pkg-bottom.mk