mirror of
https://github.com/namecoin/namecoin-core
synced 2025-10-06 00:22:46 +02:00
29 lines
747 B
Makefile
29 lines
747 B
Makefile
package=native_capnp
|
|
$(package)_version=1.2.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=ed00e44ecbbda5186bc78a41ba64a8dc4a861b5f8d4e822959b0144ae6fd42ef
|
|
|
|
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
|