mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 12:32:48 +01:00
eccd67106d
Bring dependencies up to date with master: [depends] Boost 1.59.0 [depends] miniupnpc 1.9.20151026 [depends] native ccache 3.2.4 [depends] zeromq 4.0.7 [depends] Latest config.guess & config.sub [depends] Fix miniupnpc compilation on osx Github-Pull: #6980 Rebased-From:9e940fa4c6
17ad964c2f
26f8ea5342
10d3c77644
23a3c47f95
e0769e1928
26 lines
567 B
Makefile
26 lines
567 B
Makefile
package=native_ccache
|
|
$(package)_version=3.2.4
|
|
$(package)_download_path=http://www.samba.org/ftp/ccache
|
|
$(package)_file_name=ccache-$($(package)_version).tar.bz2
|
|
$(package)_sha256_hash=ffeb967edb549e67da0bd5f44f729a2022de9fdde65dfd80d2a7204d7f75332e
|
|
|
|
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
|