mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-10 03:47:29 -03:00
5cd9e95eea
This fixes compilation on FreeBSD.
See:
1c19c362b4
.
28 lines
747 B
Makefile
28 lines
747 B
Makefile
package=native_capnp
|
|
$(package)_version=1.0.2
|
|
$(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=9057dbc0223366b74bbeca33a05de164a229b0377927f1b7ef3828cdd8cb1d7e
|
|
|
|
define $(package)_set_vars
|
|
$(package)_config_opts := -DBUILD_TESTING=OFF
|
|
$(package)_config_opts += -DWITH_OPENSSL=OFF
|
|
$(package)_config_opts += -DWITH_ZLIB=OFF
|
|
endef
|
|
|
|
define $(package)_config_cmds
|
|
$($(package)_cmake) .
|
|
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/pkgconfig
|
|
endef
|