Makefile 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  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:= libXi
  5. PKG_VERSION:= 1.6.1
  6. PKG_RELEASE:= 2
  7. PKG_MD5SUM:= d024a9de73191628f9772893f02054d8
  8. PKG_DESCR:= X Window System client interface to the XINPUT extension to the X protocol.
  9. PKG_SECTION:= x11/libs
  10. PKG_BUILDDEP:= xproto xextproto libXext libXi-host
  11. PKG_URL:= http://xorg.freedesktop.org/
  12. PKG_SITES:= ${MASTER_SITE_XORG}
  13. PKG_LIBNAME:= libxi
  14. PKG_OPTS:= dev
  15. ifeq ($(ADK_STATIC),y)
  16. PKG_OPTS+= libonly
  17. endif
  18. include $(TOPDIR)/mk/host.mk
  19. include $(TOPDIR)/mk/package.mk
  20. $(eval $(call HOST_template,LIBXI,libxi,$(PKG_VERSION)-${PKG_RELEASE}))
  21. $(eval $(call PKG_template,LIBXI,libxi,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION},$(PKG_OPTS)))
  22. HOST_STYLE:= auto
  23. CONFIGURE_ARGS+= --disable-malloc0returnsnull
  24. libxi-install:
  25. $(INSTALL_DIR) $(IDIR_LIBXI)/usr/lib
  26. $(CP) $(WRKINST)/usr/lib/libXi*.so* \
  27. $(IDIR_LIBXI)/usr/lib
  28. include ${TOPDIR}/mk/host-bottom.mk
  29. include ${TOPDIR}/mk/pkg-bottom.mk