]> rtime.felk.cvut.cz Git - coffee/buildroot.git/commitdiff
webp: new package
authorgilles.talis@gmail.com <gilles.talis@gmail.com>
Thu, 24 Jan 2013 18:35:53 +0000 (18:35 +0000)
committerPeter Korsgaard <jacmet@sunsite.dk>
Sun, 5 May 2013 20:38:11 +0000 (22:38 +0200)
[Peter: fix white space errors]
Signed-off-by: Gilles Talis <gilles.talis@gmail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
package/Config.in
package/webp/Config.in [new file with mode: 0644]
package/webp/webp.mk [new file with mode: 0644]

index e743dc8b2159240a72a617332d3ab08275896ff8..0f8fe7f3ee2a1c0b750c196bf60b10f653d31899 100644 (file)
@@ -452,6 +452,7 @@ source "package/poppler/Config.in"
 source "package/tiff/Config.in"
 source "package/wayland/Config.in"
 source "package/webkit/Config.in"
+source "package/webp/Config.in"
 source "package/zxing/Config.in"
 endmenu
 
diff --git a/package/webp/Config.in b/package/webp/Config.in
new file mode 100644 (file)
index 0000000..e385b5e
--- /dev/null
@@ -0,0 +1,7 @@
+config BR2_PACKAGE_WEBP
+       bool "webp"
+       help
+         WebP is a new image format that provides lossless and lossy
+         compression for images on the web
+
+         https://developers.google.com/speed/webp/
diff --git a/package/webp/webp.mk b/package/webp/webp.mk
new file mode 100644 (file)
index 0000000..0099c3c
--- /dev/null
@@ -0,0 +1,30 @@
+#####################################################################
+#
+# webp
+#
+#####################################################################
+
+WEBP_VERSION = 0.2.1
+WEBP_SOURCE = libwebp-$(WEBP_VERSION).tar.gz
+WEBP_SITE = https://webp.googlecode.com/files
+WEBP_LICENSE = BSD-3c
+WEBP_LICENSE_FILES = COPYING
+WEBP_INSTALL_STAGING = YES
+
+WEBP_CONF_OPT += \
+       --with-jpegincludedir=$(STAGING_DIR)/usr/include \
+       --with-jpeglibdir=$(STAGING_DIR)/usr/lib \
+       --with-tiffincludedir=$(STAGING_DIR)/usr/include \
+       --with-tifflibdir=$(STAGING_DIR)/usr/lib
+
+ifeq ($(BR2_PACKAGE_LIBPNG),y)
+WEBP_DEPENDENCIES += libpng
+WEBP_CONF_ENV += ac_cv_path_LIBPNG_CONFIG=$(STAGING_DIR)/usr/bin/libpng-config
+else
+WEBP_CONF_ENV += ac_cv_path_LIBPNG_CONFIG=/bin/false
+endif
+
+WEBP_DEPENDENCIES += $(if $(BR2_PACKAGE_JPEG),jpeg)
+WEBP_DEPENDENCIES += $(if $(BR2_PACKAGE_TIFF),tiff)
+
+$(eval $(autotools-package))