2015-05-06 02:30:20 +02:00
|
|
|
package=zeromq
|
2023-10-24 23:04:38 +02:00
|
|
|
$(package)_version=4.3.5
|
2017-11-30 08:36:33 +01:00
|
|
|
$(package)_download_path=https://github.com/zeromq/libzmq/releases/download/v$($(package)_version)/
|
2015-05-06 02:30:20 +02:00
|
|
|
$(package)_file_name=$(package)-$($(package)_version).tar.gz
|
2023-10-24 23:04:38 +02:00
|
|
|
$(package)_sha256_hash=6653ef5910f17954861fe72332e68b03ca6e4d9c7160eb3a8de5a5a913bfab43
|
|
|
|
$(package)_patches=remove_libstd_link.patch
|
2015-05-06 02:30:20 +02:00
|
|
|
|
|
|
|
define $(package)_set_vars
|
2022-01-27 03:44:24 +01:00
|
|
|
$(package)_config_opts = --without-docs --disable-shared --disable-valgrind
|
|
|
|
$(package)_config_opts += --disable-perf --disable-curve-keygen --disable-curve --disable-libbsd
|
2019-08-24 04:44:46 +02:00
|
|
|
$(package)_config_opts += --without-libsodium --without-libgssapi_krb5 --without-pgm --without-norm --without-vmci
|
2019-10-18 21:40:22 +02:00
|
|
|
$(package)_config_opts += --disable-libunwind --disable-radix-tree --without-gcov --disable-dependency-tracking
|
|
|
|
$(package)_config_opts += --disable-Werror --disable-drafts --enable-option-checking
|
2024-08-06 19:42:48 +02:00
|
|
|
$(package)_cxxflags+=-std=c++17
|
2015-05-06 02:30:20 +02:00
|
|
|
endef
|
|
|
|
|
2016-07-30 11:40:13 +02:00
|
|
|
define $(package)_preprocess_cmds
|
2023-10-24 23:04:38 +02:00
|
|
|
patch -p1 < $($(package)_patch_dir)/remove_libstd_link.patch
|
2016-07-30 11:40:13 +02:00
|
|
|
endef
|
|
|
|
|
2015-05-06 02:30:20 +02:00
|
|
|
define $(package)_config_cmds
|
2022-01-20 02:32:03 +01:00
|
|
|
./autogen.sh && \
|
2023-02-07 13:00:05 +01:00
|
|
|
cp -f $(BASEDIR)/config.guess $(BASEDIR)/config.sub config && \
|
2015-05-06 02:30:20 +02:00
|
|
|
$($(package)_autoconf)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define $(package)_build_cmds
|
2017-11-30 08:36:33 +01:00
|
|
|
$(MAKE) src/libzmq.la
|
2015-05-06 02:30:20 +02:00
|
|
|
endef
|
|
|
|
|
|
|
|
define $(package)_stage_cmds
|
2016-06-08 14:24:48 +02:00
|
|
|
$(MAKE) DESTDIR=$($(package)_staging_dir) install-libLTLIBRARIES install-includeHEADERS install-pkgconfigDATA
|
2015-05-06 02:30:20 +02:00
|
|
|
endef
|
|
|
|
|
|
|
|
define $(package)_postprocess_cmds
|
2019-06-05 16:34:12 +02:00
|
|
|
rm -rf bin share lib/*.la
|
2015-05-06 02:30:20 +02:00
|
|
|
endef
|