mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-08 00:20:38 -09:00
Last release dates back to 2020 with > 120 commits since then, including fixes for cmake 4 compatibility. Instead of backporting several patches we bump the package to the latest commit which allows to remove patch 0001. Updated license hash due to upstream commitf9dad5a35eFor list of changes, see:142e1bda34Signed-off-by: Bernd Kuhls <bernd@kuhls.net> [Julien: - add link to change list - change _VERSION to use "git describe --abbrev=40" format ] Signed-off-by: Julien Olivain <ju.o@free.fr>
24 lines
759 B
Makefile
24 lines
759 B
Makefile
################################################################################
|
|
#
|
|
# graphite2
|
|
#
|
|
################################################################################
|
|
|
|
GRAPHITE2_VERSION = 1.3.14-121-g142e1bda3439d2bd376bcac9c2b247c9532bacde
|
|
GRAPHITE2_SITE = $(call github,silnrsi,graphite,$(GRAPHITE2_VERSION))
|
|
GRAPHITE2_INSTALL_STAGING = YES
|
|
GRAPHITE2_LICENSE = LGPL-2.1+
|
|
GRAPHITE2_LICENSE_FILES = LICENSE
|
|
GRAPHITE2_CPE_ID_VENDOR = sil
|
|
|
|
# Avoid building docs and tests to save time
|
|
define GRAPHITE2_DISABLE_TESTS_DOC
|
|
$(SED) '/^add_subdirectory(doc)/d' \
|
|
-e '/^add_subdirectory(tests)/d' \
|
|
-e '/add_subdirectory(gr2fonttest)/d' \
|
|
$(@D)/CMakeLists.txt
|
|
endef
|
|
GRAPHITE2_POST_PATCH_HOOKS += GRAPHITE2_DISABLE_TESTS_DOC
|
|
|
|
$(eval $(cmake-package))
|