2015-05-06 02:30:20 +02:00
|
|
|
package=zeromq
|
2017-11-30 08:36:33 +01:00
|
|
|
$(package)_version=4.2.2
|
|
|
|
$(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
|
2017-11-30 08:36:33 +01:00
|
|
|
$(package)_sha256_hash=5b23f4ca9ef545d5bd3af55d305765e3ee06b986263b31967435d285a3e6df6b
|
|
|
|
$(package)_patches=0001-fix-build-with-older-mingw64.patch
|
2015-05-06 02:30:20 +02:00
|
|
|
|
|
|
|
define $(package)_set_vars
|
2017-11-30 08:36:33 +01:00
|
|
|
$(package)_config_opts=--without-docs --disable-shared --without-libsodium --disable-curve --disable-curve-keygen --disable-perf
|
2015-05-06 02:30:20 +02:00
|
|
|
$(package)_config_opts_linux=--with-pic
|
2017-05-05 13:27:27 +02:00
|
|
|
$(package)_cxxflags=-std=c++11
|
2015-05-06 02:30:20 +02:00
|
|
|
endef
|
|
|
|
|
2016-07-30 11:40:13 +02:00
|
|
|
define $(package)_preprocess_cmds
|
2017-11-30 08:36:33 +01:00
|
|
|
patch -p1 < $($(package)_patch_dir)/0001-fix-build-with-older-mingw64.patch && \
|
2016-07-30 11:40:13 +02:00
|
|
|
./autogen.sh
|
|
|
|
endef
|
|
|
|
|
2015-05-06 02:30:20 +02:00
|
|
|
define $(package)_config_cmds
|
|
|
|
$($(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
|
2017-12-22 09:22:51 +01:00
|
|
|
sed -i.old "s/ -lstdc++//" lib/pkgconfig/libzmq.pc && \
|
2015-05-06 02:30:20 +02:00
|
|
|
rm -rf bin share
|
|
|
|
endef
|