mirror of
https://github.com/feather-wallet/feather.git
synced 2024-11-17 01:37:53 +00:00
25 lines
747 B
Makefile
25 lines
747 B
Makefile
package=zlib
|
|
$(package)_version=1.3.1
|
|
$(package)_download_path=https://github.com/madler/zlib/releases/download/v$($(package)_version)/
|
|
$(package)_file_name=$(package)-$($(package)_version).tar.xz
|
|
$(package)_sha256_hash=38ef96b8dfe510d42707d9c781877914792541133e1870841463bfa73f883e32
|
|
|
|
define $(package)_config_cmds
|
|
CC="$($(package)_cc)" \
|
|
CXX="$($(package)_cxx)" \
|
|
AR="$($(package)_ar)" \
|
|
RANLIB="$($(package)_ranlib)" \
|
|
LIBTOOL="$($(package)_libtool)" \
|
|
LDLAGS="$($(package)_ldflags)" \
|
|
CFLAGS="-fPIE" \
|
|
CXXFLAGS="-fPIE" \
|
|
./configure --static --prefix=$(host_prefix)
|
|
endef
|
|
|
|
define $(package)_build_cmds
|
|
$(MAKE)
|
|
endef
|
|
|
|
define $(package)_stage_cmds
|
|
$(MAKE) DESTDIR=$($(package)_staging_dir) install
|
|
endef
|