blob: 7f800659a3e2ad707f78ed86c54b9fb80132413a [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 Bishop19323692019-04-05 15:28:33 -040012SRC_URI = "https://download.samba.org/pub/${BPN}/${BP}.tar.gz"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050013
14inherit autotools
15
Brad Bishop19323692019-04-05 15:28:33 -040016# Remove ccache-native's dependencies, so that it can be used widely by
17# other native recipes.
18DEPENDS_class-native = ""
19EXTRA_OECONF_class-native = "--with-bundled-zlib"
20INHIBIT_AUTOTOOLS_DEPS_class-native = "1"
21PATCHTOOL = "patch"
22
Patrick Williamsc124f4f2015-09-15 14:41:29 -050023BBCLASSEXTEND = "native"
Brad Bishop19323692019-04-05 15:28:33 -040024
25do_configure_class-native() {
26 oe_runconf
27}