2015-05-05 20:30:20 -04:00
|
|
|
package=zeromq
|
2023-10-10 10:03:25 +01:00
|
|
|
$(package)_version=4.3.5
|
2016-12-01 12:39:31 +08:00
|
|
|
$(package)_download_path=https://github.com/zeromq/libzmq/releases/download/v$($(package)_version)/
|
2015-05-05 20:30:20 -04:00
|
|
|
$(package)_file_name=$(package)-$($(package)_version).tar.gz
|
2023-10-10 10:03:25 +01:00
|
|
|
$(package)_sha256_hash=6653ef5910f17954861fe72332e68b03ca6e4d9c7160eb3a8de5a5a913bfab43
|
|
|
|
$(package)_patches=remove_libstd_link.patch
|
2015-05-05 20:30:20 -04:00
|
|
|
|
|
|
|
define $(package)_set_vars
|
2022-01-25 14:44:33 +02:00
|
|
|
$(package)_config_opts = --without-docs --disable-shared --disable-valgrind
|
2022-01-25 14:32:32 +02:00
|
|
|
$(package)_config_opts += --disable-perf --disable-curve-keygen --disable-curve --disable-libbsd
|
2019-07-11 09:20:25 +08:00
|
|
|
$(package)_config_opts += --without-libsodium --without-libgssapi_krb5 --without-pgm --without-norm --without-vmci
|
2019-09-24 11:01:19 +08:00
|
|
|
$(package)_config_opts += --disable-libunwind --disable-radix-tree --without-gcov --disable-dependency-tracking
|
2019-10-11 13:31:50 -04:00
|
|
|
$(package)_config_opts += --disable-Werror --disable-drafts --enable-option-checking
|
2015-05-05 20:30:20 -04:00
|
|
|
$(package)_config_opts_linux=--with-pic
|
2022-01-03 13:21:58 +08:00
|
|
|
$(package)_config_opts_freebsd=--with-pic
|
2022-01-03 18:20:08 +08:00
|
|
|
$(package)_config_opts_netbsd=--with-pic
|
2022-01-07 13:16:30 +08:00
|
|
|
$(package)_config_opts_openbsd=--with-pic
|
2019-10-18 22:03:51 +02:00
|
|
|
$(package)_config_opts_android=--with-pic
|
2015-05-05 20:30:20 -04:00
|
|
|
endef
|
|
|
|
|
2016-06-22 17:56:07 +08:00
|
|
|
define $(package)_preprocess_cmds
|
2023-10-10 10:03:25 +01:00
|
|
|
patch -p1 < $($(package)_patch_dir)/remove_libstd_link.patch
|
2016-06-22 17:56:07 +08:00
|
|
|
endef
|
|
|
|
|
2015-05-05 20:30:20 -04:00
|
|
|
define $(package)_config_cmds
|
2022-01-03 20:39:10 +08:00
|
|
|
./autogen.sh && \
|
2022-10-29 15:51:10 +01:00
|
|
|
cp -f $(BASEDIR)/config.guess $(BASEDIR)/config.sub config && \
|
2015-05-05 20:30:20 -04:00
|
|
|
$($(package)_autoconf)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define $(package)_build_cmds
|
2016-12-01 12:39:31 +08:00
|
|
|
$(MAKE) src/libzmq.la
|
2015-05-05 20:30:20 -04:00
|
|
|
endef
|
|
|
|
|
|
|
|
define $(package)_stage_cmds
|
2016-05-03 20:52:10 +08:00
|
|
|
$(MAKE) DESTDIR=$($(package)_staging_dir) install-libLTLIBRARIES install-includeHEADERS install-pkgconfigDATA
|
2015-05-05 20:30:20 -04:00
|
|
|
endef
|
|
|
|
|
|
|
|
define $(package)_postprocess_cmds
|
2019-04-18 13:49:11 -04:00
|
|
|
rm -rf bin share lib/*.la
|
2015-05-05 20:30:20 -04:00
|
|
|
endef
|