1################################################################################ 2# 3# woff2 4# 5################################################################################ 6 7WOFF2_VERSION = 1.0.2 8WOFF2_SOURCE = v$(WOFF2_VERSION).tar.gz 9WOFF2_SITE = https://github.com/google/woff2/archive 10WOFF2_LICENSE = MIT 11WOFF2_LICENSE_FILES = LICENSE 12WOFF2_INSTALL_STAGING = YES 13WOFF2_DEPENDENCIES = brotli 14WOFF2_CONF_OPTS = \ 15 -DNOISY_LOGGING=OFF 16 17# The CMake build files for woff2 manually set some RPATH handling options 18# which make the installation steps fail with static builds, so pass this 19# to prevent any attempt of mangling RPATH that CMake would do. 20ifneq ($(BR2_SHARED_LIBS),y) 21WOFF2_CONF_OPTS += -DCMAKE_SKIP_RPATH=ON 22endif 23 24$(eval $(cmake-package)) 25