mirror of
https://github.com/bitcoin/bitcoin.git
synced 2024-11-19 18:09:47 +01:00
603fd6a2e7
Builds required packages and passes --enable-multiprocess option to bitcoin build
19 lines
510 B
Makefile
19 lines
510 B
Makefile
package=native_capnp
|
|
$(package)_version=0.7.0
|
|
$(package)_download_path=https://capnproto.org/
|
|
$(package)_download_file=capnproto-c++-$($(package)_version).tar.gz
|
|
$(package)_file_name=capnproto-cxx-$($(package)_version).tar.gz
|
|
$(package)_sha256_hash=c9a4c0bd88123064d483ab46ecee777f14d933359e23bff6fb4f4dbd28b4cd41
|
|
|
|
define $(package)_config_cmds
|
|
$($(package)_autoconf)
|
|
endef
|
|
|
|
define $(package)_build_cmds
|
|
$(MAKE)
|
|
endef
|
|
|
|
define $(package)_stage_cmds
|
|
$(MAKE) DESTDIR=$($(package)_staging_dir) install
|
|
endef
|