mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 20:42:59 +01:00
e5817f44a2
d8bc47fde4 depends: switch to secure download of all dependencies (Ulrich Kempken) Pull request description: Even if we potentially check the integrity of the downloaded file via hash comparison, we should make use of SSL since it is available. ACKs for commit d8bc47: jonasschnelli: utACK d8bc47fde46ca0711fa54a0d70ff5d066c708e50 practicalswift: utACK d8bc47fde46ca0711fa54a0d70ff5d066c708e50 dongcarl: tACK d8bc47fde46ca0711fa54a0d70ff5d066c708e50 Tree-SHA512: e47702f6d243ed7f498ca84c193244382f16f08df6a297caa224b4468f501f3da6fe542fcf3a0dd9c24ab1b0b38bbc51478068e6006a92854ded23abf90de3c8
31 lines
1.0 KiB
Makefile
31 lines
1.0 KiB
Makefile
package=zlib
|
|
$(package)_version=1.2.11
|
|
$(package)_download_path=https://www.zlib.net
|
|
$(package)_file_name=$(package)-$($(package)_version).tar.gz
|
|
$(package)_sha256_hash=c3e5e9fdd5004dcb542feda5ee4f0ff0744628baf8ed2dd5d66f8ca1197cb1a1
|
|
|
|
define $(package)_set_vars
|
|
$(package)_config_opts= CC="$($(package)_cc)"
|
|
$(package)_config_opts+=CFLAGS="$($(package)_cflags) $($(package)_cppflags) -fPIC"
|
|
$(package)_config_opts+=RANLIB="$($(package)_ranlib)"
|
|
$(package)_config_opts+=AR="$($(package)_ar)"
|
|
$(package)_config_opts_darwin+=AR="$($(package)_libtool)"
|
|
$(package)_config_opts_darwin+=ARFLAGS="-o"
|
|
endef
|
|
|
|
# zlib has its own custom configure script that takes in options like CC,
|
|
# CFLAGS, RANLIB, AR, and ARFLAGS from the environment rather than from
|
|
# command-line arguments.
|
|
define $(package)_config_cmds
|
|
env $($(package)_config_opts) ./configure --static --prefix=$(host_prefix)
|
|
endef
|
|
|
|
define $(package)_build_cmds
|
|
$(MAKE) libz.a
|
|
endef
|
|
|
|
define $(package)_stage_cmds
|
|
$(MAKE) DESTDIR=$($(package)_staging_dir) install
|
|
endef
|
|
|