Makefile 869 B

123456789101112131415161718192021222324252627
  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:= libwebp
  5. PKG_VERSION:= 0.3.1
  6. PKG_RELEASE:= 1
  7. PKG_HASH:= b37932c625322a69fe4e9b88884b5c7aed2b3eaf9fd5e5b480aee339a92e6ee7
  8. PKG_DESCR:= new image format for the web
  9. PKG_SECTION:= libs/image
  10. PKG_URL:= https://developers.google.com/speed/webp/
  11. PKG_SITES:= https://webp.googlecode.com/files/
  12. PKG_OPTS:= dev
  13. DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.gz
  14. include $(ADK_TOPDIR)/mk/package.mk
  15. $(eval $(call PKG_template,LIBWEBP,libwebp,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION},${PKG_OPTS}))
  16. libwebp-install:
  17. $(INSTALL_DIR) $(IDIR_LIBWEBP)/usr/lib
  18. $(CP) $(WRKINST)/usr/lib/libwebp*.so* \
  19. $(IDIR_LIBWEBP)/usr/lib
  20. include ${ADK_TOPDIR}/mk/pkg-bottom.mk