2019-07-09 14:40:45 -04:00
|
|
|
package=capnp
|
|
|
|
$(package)_version=$(native_$(package)_version)
|
|
|
|
$(package)_download_path=$(native_$(package)_download_path)
|
2022-02-02 17:51:14 +00:00
|
|
|
$(package)_download_file=$(native_$(package)_download_file)
|
2019-07-09 14:40:45 -04:00
|
|
|
$(package)_file_name=$(native_$(package)_file_name)
|
|
|
|
$(package)_sha256_hash=$(native_$(package)_sha256_hash)
|
|
|
|
|
2022-06-09 14:38:26 +02:00
|
|
|
define $(package)_set_vars :=
|
2023-12-06 12:34:03 +00:00
|
|
|
$(package)_config_opts := -DBUILD_TESTING=OFF
|
|
|
|
$(package)_config_opts += -DWITH_OPENSSL=OFF
|
|
|
|
$(package)_config_opts += -DWITH_ZLIB=OFF
|
2024-09-23 13:24:08 +01:00
|
|
|
$(package)_cxxflags += -ffile-prefix-map=$$($(package)_extract_dir)=/usr
|
2022-06-09 14:38:26 +02:00
|
|
|
endef
|
|
|
|
|
2019-07-09 14:40:45 -04:00
|
|
|
define $(package)_config_cmds
|
2023-12-04 14:39:58 +00:00
|
|
|
$($(package)_cmake) .
|
2019-07-09 14:40:45 -04:00
|
|
|
endef
|
|
|
|
|
|
|
|
define $(package)_build_cmds
|
|
|
|
$(MAKE)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define $(package)_stage_cmds
|
|
|
|
$(MAKE) DESTDIR=$($(package)_staging_dir) install
|
|
|
|
endef
|
2023-12-04 14:39:58 +00:00
|
|
|
|
|
|
|
define $(package)_postprocess_cmds
|
|
|
|
rm -rf lib/pkgconfig
|
|
|
|
endef
|