4f634160b2
Add the brotli package to Buildroot. This is needed by woff2, which in turn is needed by webkitgtk from version 2.20.0 onwards. WebKitGTK+ used to bundle a copy of the library, but it stopped doing so now that the upstream has started making releases. [Peter: fix license hash] Signed-off-by: Adrian Perez de Castro <aperez@igalia.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
18 lines
480 B
Makefile
18 lines
480 B
Makefile
################################################################################
|
|
#
|
|
# brotli
|
|
#
|
|
################################################################################
|
|
|
|
BROTLI_VERSION = 1.0.3
|
|
BROTLI_SOURCE = v$(BROTLI_VERSION).tar.gz
|
|
BROTLI_SITE = https://github.com/google/brotli/archive
|
|
BROTLI_LICENSE = MIT
|
|
BROTLI_LICENSE_FILES = LICENSE
|
|
BROTLI_INSTALL_STAGING = YES
|
|
BROTLI_CONF_OPTS = \
|
|
-DBROTLI_DISABLE_TESTS=ON \
|
|
-DBROTLI_BUNDLED_MODE=OFF
|
|
|
|
$(eval $(cmake-package))
|