blob: dcbbf0ca7a556100aaa817b9cee95fc3ab400a8f [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001SUMMARY = "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"
8LICENSE = "GPLv3+"
9
10DEPENDS = "zlib"
11
Brad Bishopc342db32019-05-15 21:57:59 -040012SRC_URI = "https://github.com/ccache/ccache/releases/download/v${PV}/${BP}.tar.gz"
Brad Bishop15ae2502019-06-18 21:44:24 -040013UPSTREAM_CHECK_URI = "https://github.com/ccache/ccache/releases/"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050014
15inherit autotools
16
Brad Bishop19323692019-04-05 15:28:33 -040017# Remove ccache-native's dependencies, so that it can be used widely by
18# other native recipes.
19DEPENDS_class-native = ""
20EXTRA_OECONF_class-native = "--with-bundled-zlib"
21INHIBIT_AUTOTOOLS_DEPS_class-native = "1"
22PATCHTOOL = "patch"
23
Patrick Williamsc124f4f2015-09-15 14:41:29 -050024BBCLASSEXTEND = "native"
Brad Bishop19323692019-04-05 15:28:33 -040025
26do_configure_class-native() {
27 oe_runconf
28}