diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2014-04-30 13:26:35 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2014-04-30 13:31:20 +0200 |
commit | 5a43da1af12df3a39cd30b724bf9144850bd2764 (patch) | |
tree | 1480c5d41b739168d930ddf503f407218e35b98d /package/libwebp/Makefile | |
parent | 30d6f21d2fb3ca89a86346994a70a436afbb2e14 (diff) |
experimental midori support
Diffstat (limited to 'package/libwebp/Makefile')
-rw-r--r-- | package/libwebp/Makefile | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/package/libwebp/Makefile b/package/libwebp/Makefile new file mode 100644 index 000000000..8a22e3fa8 --- /dev/null +++ b/package/libwebp/Makefile @@ -0,0 +1,25 @@ +# This file is part of the OpenADK project. OpenADK is copyrighted +# material, please see the LICENCE file in the top-level directory. + +include $(TOPDIR)/rules.mk + +PKG_NAME:= libwebp +PKG_VERSION:= 0.3.1 +PKG_RELEASE:= 1 +PKG_MD5SUM:= dc862bb4006d819b7587767a9e83d31f +PKG_DESCR:= new image format for the web +PKG_SECTION:= libs +PKG_URL:= https://developers.google.com/speed/webp/ +PKG_SITES:= https://webp.googlecode.com/files/ +PKG_OPTS:= dev + +include $(TOPDIR)/mk/package.mk + +$(eval $(call PKG_template,LIBWEBP,libwebp,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION},${PKG_OPTS})) + +libwebp-install: + $(INSTALL_DIR) $(IDIR_LIBWEBP)/usr/lib + $(CP) $(WRKINST)/usr/lib/libwebp*.so* \ + $(IDIR_LIBWEBP)/usr/lib + +include ${TOPDIR}/mk/pkg-bottom.mk |