2020-05-21 09:10:52 +02:00
|
|
|
package=capnp
|
|
|
|
$(package)_version=$(native_$(package)_version)
|
|
|
|
$(package)_download_path=$(native_$(package)_download_path)
|
2022-02-03 03:44:00 +01:00
|
|
|
$(package)_download_file=$(native_$(package)_download_file)
|
2020-05-21 09:10:52 +02:00
|
|
|
$(package)_file_name=$(native_$(package)_file_name)
|
|
|
|
$(package)_sha256_hash=$(native_$(package)_sha256_hash)
|
|
|
|
|
2022-10-10 15:01:54 +02:00
|
|
|
define $(package)_set_vars :=
|
2023-12-13 11:41:33 +01:00
|
|
|
$(package)_config_opts := -DBUILD_TESTING=OFF
|
|
|
|
$(package)_config_opts += -DWITH_OPENSSL=OFF
|
|
|
|
$(package)_config_opts += -DWITH_ZLIB=OFF
|
2022-10-10 15:01:54 +02:00
|
|
|
endef
|
|
|
|
|
2020-05-21 09:10:52 +02:00
|
|
|
define $(package)_config_cmds
|
2023-12-05 14:15:57 +01:00
|
|
|
$($(package)_cmake) .
|
2020-05-21 09:10:52 +02:00
|
|
|
endef
|
|
|
|
|
|
|
|
define $(package)_build_cmds
|
|
|
|
$(MAKE)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define $(package)_stage_cmds
|
|
|
|
$(MAKE) DESTDIR=$($(package)_staging_dir) install
|
|
|
|
endef
|
2023-12-05 14:15:57 +01:00
|
|
|
|
|
|
|
define $(package)_postprocess_cmds
|
|
|
|
rm -rf lib/pkgconfig
|
|
|
|
endef
|