summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/ccache/ccache_4.11.2.bb
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools/ccache/ccache_4.11.2.bb')
-rw-r--r--meta/recipes-devtools/ccache/ccache_4.11.2.bb32
1 files changed, 32 insertions, 0 deletions
diff --git a/meta/recipes-devtools/ccache/ccache_4.11.2.bb b/meta/recipes-devtools/ccache/ccache_4.11.2.bb
new file mode 100644
index 0000000000..3a41cb5736
--- /dev/null
+++ b/meta/recipes-devtools/ccache/ccache_4.11.2.bb
@@ -0,0 +1,32 @@
1SUMMARY = "a fast C/C++ compiler cache"
2DESCRIPTION = "ccache is a compiler cache. It speeds up recompilation \
3by caching the result of previous compilations and detecting when the \
4same compilation is being done again. Supported languages are C, C\+\+, \
5Objective-C and Objective-C++."
6HOMEPAGE = "http://ccache.samba.org"
7SECTION = "devel"
8
9LICENSE = "GPL-3.0-or-later & MIT & BSL-1.0 & ISC"
10LIC_FILES_CHKSUM = "file://LICENSE.adoc;md5=b98c3470e22877fefa43a01a2dd0669c \
11 file://src/third_party/cpp-httplib/httplib.h;endline=6;md5=663aca6f84e7d67ade228aad32afc0ea \
12 file://src/third_party/nonstd-span/nonstd/span.hpp;endline=9;md5=b4af92a7f068b38c5b3410dceb30c186 \
13 file://src/third_party/win32-compat/win32/mktemp.c;endline=17;md5=d287e9c1f1cd2bb2bd164490e1cf449a \
14 "
15
16DEPENDS = "zstd fmt xxhash"
17
18SRC_URI = "${GITHUB_BASE_URI}/download/v${PV}/${BP}.tar.gz"
19
20SRC_URI[sha256sum] = "d51b82bb8c3932649323fd4cb8e5a0a9f7fe7f672c71a6d6839bee13b4ded4c5"
21
22inherit cmake github-releases
23
24PATCHTOOL = "patch"
25
26BBCLASSEXTEND = "native nativesdk"
27
28PACKAGECONFIG[docs] = "-DENABLE_DOCUMENTATION=ON,-DENABLE_DOCUMENTATION=OFF,asciidoc"
29PACKAGECONFIG[redis] = "-DREDIS_STORAGE_BACKEND=ON,-DREDIS_STORAGE_BACKEND=OFF,hiredis"
30
31# ENABLE_TESTING requires doctest which is not present in oe
32EXTRA_OECMAKE += "-DENABLE_TESTING=OFF"