eb202e812f
* Use subdirectory for depends cache in gitian builds * Make timestamps of wrappers deterministic * Use ccache in gitian builds * Upgrade ccache to latest version (3.4.2) * Build the branch that belongs to the Jenkins build instead of develop
26 lines
564 B
Makefile
26 lines
564 B
Makefile
package=native_ccache
|
|
$(package)_version=3.4.2
|
|
$(package)_download_path=https://samba.org/ftp/ccache
|
|
$(package)_file_name=ccache-$($(package)_version).tar.bz2
|
|
$(package)_sha256_hash=3aa5587793d4c790bd22999bfc678250c029307b3afb9d16f6f4a49c67b78fb3
|
|
|
|
define $(package)_set_vars
|
|
$(package)_config_opts=
|
|
endef
|
|
|
|
define $(package)_config_cmds
|
|
$($(package)_autoconf)
|
|
endef
|
|
|
|
define $(package)_build_cmds
|
|
$(MAKE)
|
|
endef
|
|
|
|
define $(package)_stage_cmds
|
|
$(MAKE) DESTDIR=$($(package)_staging_dir) install
|
|
endef
|
|
|
|
define $(package)_postprocess_cmds
|
|
rm -rf lib include
|
|
endef
|