mirror of
https://github.com/dashpay/dash.git
synced 2024-12-25 20:12:57 +01:00
fc7b5778f1
6a4cf16
[depends] expat 2.1.1 (fanquake)3e0587b
[depends] miniupnpc 2.0 (fanquake)87b8175
[depends] Latest config.guess & config.sub (fanquake)bd3cbd5
[depends] ZeroMQ 4.1.4 (fanquake)0385202
[depends] ccache 3.2.5 (fanquake)2b2d52e
[depends] Freetype 2.6.3 (fanquake)
28 lines
763 B
Makefile
28 lines
763 B
Makefile
package=zeromq
|
|
$(package)_version=4.1.4
|
|
$(package)_download_path=http://download.zeromq.org
|
|
$(package)_file_name=$(package)-$($(package)_version).tar.gz
|
|
$(package)_sha256_hash=e99f44fde25c2e4cb84ce440f87ca7d3fe3271c2b8cfbc67d55e4de25e6fe378
|
|
|
|
define $(package)_set_vars
|
|
$(package)_config_opts=--without-documentation --disable-shared --without-libsodium
|
|
$(package)_config_opts_linux=--with-pic
|
|
$(package)_cxxflags=-std=c++11
|
|
endef
|
|
|
|
define $(package)_config_cmds
|
|
$($(package)_autoconf)
|
|
endef
|
|
|
|
define $(package)_build_cmds
|
|
$(MAKE) libzmq.la
|
|
endef
|
|
|
|
define $(package)_stage_cmds
|
|
$(MAKE) DESTDIR=$($(package)_staging_dir) install-libLTLIBRARIES install-includeHEADERS install-pkgconfigDATA
|
|
endef
|
|
|
|
define $(package)_postprocess_cmds
|
|
rm -rf bin share
|
|
endef
|