mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 12:32:48 +01:00
32 lines
1.0 KiB
Makefile
32 lines
1.0 KiB
Makefile
package=zlib
|
|
$(package)_version=1.2.12
|
|
$(package)_download_path=https://www.zlib.net
|
|
$(package)_file_name=$(package)-$($(package)_version).tar.gz
|
|
$(package)_sha256_hash=91844808532e5ce316b3c010929493c0244f3d37593afd6de04f71821d5136d9
|
|
|
|
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"
|
|
$(package)_config_opts_android+=CHOST=$(host)
|
|
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
|
|
|