Makefile 959 B

1234567891011121314151617181920212223242526272829303132
  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. DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.gz
  15. include $(TOPDIR)/mk/host.mk
  16. include $(TOPDIR)/mk/package.mk
  17. $(eval $(call HOST_template,LIBXAU,libxau,$(PKG_VERSION)-${PKG_RELEASE}))
  18. $(eval $(call PKG_template,LIBXAU,libxau,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION},${PKG_OPTS}))
  19. HOST_STYLE:= auto
  20. libxau-install:
  21. ${INSTALL_DIR} ${IDIR_LIBXAU}/usr/lib
  22. ${CP} ${WRKINST}/usr/lib/libXau.so* ${IDIR_LIBXAU}/usr/lib/
  23. include ${TOPDIR}/mk/host-bottom.mk
  24. include ${TOPDIR}/mk/pkg-bottom.mk