Makefile 842 B

1234567891011121314151617181920212223242526
  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:= libXxf86vm
  5. PKG_VERSION:= 1.1.0
  6. PKG_RELEASE:= 1
  7. PKG_MD5SUM:= 52b49483eccbdd1566b8c560fe7f76e8
  8. PKG_DESCR:= an interface to the XFree86-VidModeExtension extension
  9. PKG_SECTION:= x11/libs
  10. PKG_BUILDDEP:= xf86vidmodeproto libXext
  11. PKG_SITES:= http://xorg.freedesktop.org/archive/individual/lib/
  12. include $(TOPDIR)/mk/package.mk
  13. $(eval $(call PKG_template,LIBXXF86VM,libxxf86vm,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  14. CONFIGURE_ARGS+= --disable-malloc0returnsnull
  15. post-install:
  16. $(INSTALL_DIR) $(IDIR_LIBXXF86VM)/usr/lib
  17. ${CP} $(WRKINST)/usr/lib/libXxf86vm*.so* \
  18. $(IDIR_LIBXXF86VM)/usr/lib
  19. include ${TOPDIR}/mk/pkg-bottom.mk