mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-06 10:18:44 -05:00
14 lines
403 B
Makefile
14 lines
403 B
Makefile
![]() |
package=native_boost
|
||
|
$(package)_version=$(boost_version)
|
||
|
$(package)_download_path=$(boost_download_path)
|
||
|
$(package)_file_name=$(boost_file_name)
|
||
|
$(package)_sha256_hash=$(boost_sha256_hash)
|
||
|
|
||
|
define $(package)_config_cmds
|
||
|
./bootstrap.sh --prefix=$($($(package)_type)_prefix) --with-libraries=headers
|
||
|
endef
|
||
|
|
||
|
define $(package)_stage_cmds
|
||
|
./b2 -d0 --prefix=$($(package)_staging_prefix_dir) install
|
||
|
endef
|