2015-05-06 02:30:20 +02:00
|
|
|
package=zeromq
|
2019-01-17 17:25:38 +01:00
|
|
|
$(package)_version=4.3.1
|
2016-12-01 05:39:31 +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
|
2019-01-17 17:25:38 +01:00
|
|
|
$(package)_sha256_hash=bcbabe1e2c7d0eec4ed612e10b94b112dd5f06fcefa994a0c79a45d835cd21eb
|
2020-08-18 08:50:14 +02:00
|
|
|
$(package)_patches=remove_libstd_link.patch
|
2015-05-06 02:30:20 +02:00
|
|
|
|
|
|
|
define $(package)_set_vars
|
2019-10-11 19:31:50 +02:00
|
|
|
$(package)_config_opts=--without-docs --disable-shared --disable-curve --disable-curve-keygen --disable-perf
|
2019-07-11 03:20:25 +02:00
|
|
|
$(package)_config_opts += --without-libsodium --without-libgssapi_krb5 --without-pgm --without-norm --without-vmci
|
2019-09-24 05:01:19 +02:00
|
|
|
$(package)_config_opts += --disable-libunwind --disable-radix-tree --without-gcov --disable-dependency-tracking
|
2019-10-11 19:31:50 +02:00
|
|
|
$(package)_config_opts += --disable-Werror --disable-drafts --enable-option-checking
|
2015-05-06 02:30:20 +02:00
|
|
|
$(package)_config_opts_linux=--with-pic
|
2019-10-18 22:03:51 +02:00
|
|
|
$(package)_config_opts_android=--with-pic
|
2021-08-31 05:43:48 +02:00
|
|
|
$(package)_cxxflags+=-std=c++17
|
2015-05-06 02:30:20 +02:00
|
|
|
endef
|
|
|
|
|
2016-06-22 11:56:07 +02:00
|
|
|
define $(package)_preprocess_cmds
|
2020-08-18 08:50:14 +02:00
|
|
|
patch -p1 < $($(package)_patch_dir)/remove_libstd_link.patch && \
|
|
|
|
cp -f $(BASEDIR)/config.guess $(BASEDIR)/config.sub config
|
2016-06-22 11:56:07 +02:00
|
|
|
endef
|
|
|
|
|
2015-05-06 02:30:20 +02:00
|
|
|
define $(package)_config_cmds
|
|
|
|
$($(package)_autoconf)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define $(package)_build_cmds
|
2016-12-01 05:39:31 +01:00
|
|
|
$(MAKE) src/libzmq.la
|
2015-05-06 02:30:20 +02:00
|
|
|
endef
|
|
|
|
|
|
|
|
define $(package)_stage_cmds
|
2016-05-03 14:52:10 +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-04-18 19:49:11 +02:00
|
|
|
rm -rf bin share lib/*.la
|
2015-05-06 02:30:20 +02:00
|
|
|
endef
|