2015-05-05 21:30:20 -03:00
|
|
|
package=zeromq
|
2019-01-17 13:25:38 -03:00
|
|
|
$(package)_version=4.3.1
|
2016-12-01 01:39:31 -03:00
|
|
|
$(package)_download_path=https://github.com/zeromq/libzmq/releases/download/v$($(package)_version)/
|
2015-05-05 21:30:20 -03:00
|
|
|
$(package)_file_name=$(package)-$($(package)_version).tar.gz
|
2019-01-17 13:25:38 -03:00
|
|
|
$(package)_sha256_hash=bcbabe1e2c7d0eec4ed612e10b94b112dd5f06fcefa994a0c79a45d835cd21eb
|
2018-03-05 16:45:48 -03:00
|
|
|
$(package)_patches=0001-fix-build-with-older-mingw64.patch 0002-disable-pthread_set_name_np.patch
|
2015-05-05 21:30:20 -03:00
|
|
|
|
|
|
|
define $(package)_set_vars
|
2019-07-10 21:20:25 -04:00
|
|
|
$(package)_config_opts=--without-docs --disable-shared --disable-curve --disable-curve-keygen --disable-perf --disable-Werror --disable-drafts
|
|
|
|
$(package)_config_opts += --without-libsodium --without-libgssapi_krb5 --without-pgm --without-norm --without-vmci
|
2019-09-24 00:01:19 -03:00
|
|
|
$(package)_config_opts += --disable-libunwind --disable-radix-tree --without-gcov --disable-dependency-tracking
|
2015-05-05 21:30:20 -03:00
|
|
|
$(package)_config_opts_linux=--with-pic
|
2016-04-21 17:23:40 -03:00
|
|
|
$(package)_cxxflags=-std=c++11
|
2015-05-05 21:30:20 -03:00
|
|
|
endef
|
|
|
|
|
2016-06-22 05:56:07 -04:00
|
|
|
define $(package)_preprocess_cmds
|
2017-11-28 22:42:39 -03:00
|
|
|
patch -p1 < $($(package)_patch_dir)/0001-fix-build-with-older-mingw64.patch && \
|
2018-07-08 10:59:21 -04:00
|
|
|
patch -p1 < $($(package)_patch_dir)/0002-disable-pthread_set_name_np.patch && \
|
|
|
|
cp -f $(BASEDIR)/config.guess $(BASEDIR)/config.sub config
|
2016-06-22 05:56:07 -04:00
|
|
|
endef
|
|
|
|
|
2015-05-05 21:30:20 -03:00
|
|
|
define $(package)_config_cmds
|
|
|
|
$($(package)_autoconf)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define $(package)_build_cmds
|
2016-12-01 01:39:31 -03:00
|
|
|
$(MAKE) src/libzmq.la
|
2015-05-05 21:30:20 -03:00
|
|
|
endef
|
|
|
|
|
|
|
|
define $(package)_stage_cmds
|
2016-05-03 09:52:10 -03:00
|
|
|
$(MAKE) DESTDIR=$($(package)_staging_dir) install-libLTLIBRARIES install-includeHEADERS install-pkgconfigDATA
|
2015-05-05 21:30:20 -03:00
|
|
|
endef
|
|
|
|
|
|
|
|
define $(package)_postprocess_cmds
|
2017-12-21 19:27:57 -03:00
|
|
|
sed -i.old "s/ -lstdc++//" lib/pkgconfig/libzmq.pc && \
|
2019-04-18 13:49:11 -04:00
|
|
|
rm -rf bin share lib/*.la
|
2015-05-05 21:30:20 -03:00
|
|
|
endef
|