Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1 | SUMMARY = "a fast C/C++ compiler cache" |
| 2 | DESCRIPTION = "ccache is a compiler cache. It speeds up recompilation \ |
| 3 | by caching the result of previous compilations and detecting when the \ |
| 4 | same compilation is being done again. Supported languages are C, C\+\+, \ |
| 5 | Objective-C and Objective-C++." |
| 6 | HOMEPAGE = "http://ccache.samba.org" |
| 7 | SECTION = "devel" |
| 8 | LICENSE = "GPLv3+" |
| 9 | |
| 10 | DEPENDS = "zlib" |
| 11 | |
Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 12 | SRC_URI = "https://github.com/ccache/ccache/releases/download/v${PV}/${BP}.tar.gz" |
Brad Bishop | 15ae250 | 2019-06-18 21:44:24 -0400 | [diff] [blame] | 13 | UPSTREAM_CHECK_URI = "https://github.com/ccache/ccache/releases/" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 14 | |
| 15 | inherit autotools |
| 16 | |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 17 | # Remove ccache-native's dependencies, so that it can be used widely by |
| 18 | # other native recipes. |
| 19 | DEPENDS_class-native = "" |
| 20 | EXTRA_OECONF_class-native = "--with-bundled-zlib" |
| 21 | INHIBIT_AUTOTOOLS_DEPS_class-native = "1" |
| 22 | PATCHTOOL = "patch" |
| 23 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 24 | BBCLASSEXTEND = "native" |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 25 | |
| 26 | do_configure_class-native() { |
| 27 | oe_runconf |
| 28 | } |