Move all to deprecated folder.
This commit is contained in:
7
deprecated/firmware/buildroot/package/webp/Config.in
Normal file
7
deprecated/firmware/buildroot/package/webp/Config.in
Normal file
@@ -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/
|
||||
2
deprecated/firmware/buildroot/package/webp/webp.hash
Normal file
2
deprecated/firmware/buildroot/package/webp/webp.hash
Normal file
@@ -0,0 +1,2 @@
|
||||
# Locally calculated
|
||||
sha256 efbe0d58fda936f2ed99d0b837ed7087d064d6838931f282c4618d2a3f7390c4 libwebp-0.4.3.tar.gz
|
||||
30
deprecated/firmware/buildroot/package/webp/webp.mk
Normal file
30
deprecated/firmware/buildroot/package/webp/webp.mk
Normal file
@@ -0,0 +1,30 @@
|
||||
################################################################################
|
||||
#
|
||||
# webp
|
||||
#
|
||||
################################################################################
|
||||
|
||||
WEBP_VERSION = 0.4.3
|
||||
WEBP_SOURCE = libwebp-$(WEBP_VERSION).tar.gz
|
||||
WEBP_SITE = http://downloads.webmproject.org/releases/webp
|
||||
WEBP_LICENSE = BSD-3c
|
||||
WEBP_LICENSE_FILES = COPYING
|
||||
WEBP_INSTALL_STAGING = YES
|
||||
|
||||
WEBP_CONF_OPTS += \
|
||||
--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))
|
||||
Reference in New Issue
Block a user