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 | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 12 | SRC_URI = "https://download.samba.org/pub/${BPN}/${BP}.tar.gz" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 13 | |
| 14 | inherit autotools |
| 15 | |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 16 | # Remove ccache-native's dependencies, so that it can be used widely by |
| 17 | # other native recipes. |
| 18 | DEPENDS_class-native = "" |
| 19 | EXTRA_OECONF_class-native = "--with-bundled-zlib" |
| 20 | INHIBIT_AUTOTOOLS_DEPS_class-native = "1" |
| 21 | PATCHTOOL = "patch" |
| 22 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 23 | BBCLASSEXTEND = "native" |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 24 | |
| 25 | do_configure_class-native() { |
| 26 | oe_runconf |
| 27 | } |