mirror of
https://codeberg.org/anoncontributorxmr/monero.git
synced 2024-11-27 21:33:27 +01:00
44c0470e1e
5c27fd8
depends: Package cleanup (Howard Chu)c1d47eb
Update randomx: fix Mac linking error (Howard Chu)02e6af2
Update CI for aarch64 mac build (selsta)7ea1e21
Make Mac SDK into a regular depends package (Howard Chu)e81ab9b
Silence some protobuf link warnings (Howard Chu)fe5c2ae
Fix arm64 darwin package defs (Howard Chu)fb68465
Boost 1.64 doesn't recognize arm64 darwin (Howard Chu)617f908
more... update to clang 9.0.0 (Howard Chu)83ae3ad
Split native_clang out of native_cctools (Howard Chu)1008318
Update native_cctools for newer SDK support (Howard Chu)a86c4cb
Update to MacOSX SDK 11.1, add Mac M1 (Howard Chu)
29 lines
1.1 KiB
Makefile
29 lines
1.1 KiB
Makefile
package=unbound
|
|
$(package)_version=1.15.0
|
|
$(package)_download_path=https://www.nlnetlabs.nl/downloads/$(package)/
|
|
$(package)_file_name=$(package)-$($(package)_version).tar.gz
|
|
$(package)_sha256_hash=a480dc6c8937447b98d161fe911ffc76cfaffa2da18788781314e81339f1126f
|
|
$(package)_dependencies=openssl expat ldns
|
|
|
|
define $(package)_set_vars
|
|
$(package)_config_opts=--disable-shared --enable-static --without-pyunbound --prefix=$(host_prefix) --with-libexpat=$(host_prefix) --with-ssl=$(host_prefix) --with-libevent=no --without-pythonmodule --disable-flto --with-pthreads --with-libunbound-only
|
|
$(package)_config_opts_linux=--with-pic
|
|
$(package)_config_opts_w64=--enable-static-exe --sysconfdir=/etc --prefix=$(host_prefix) --target=$(host_prefix)
|
|
$(package)_build_opts_mingw32=LDFLAGS="$($(package)_ldflags) -lpthread"
|
|
endef
|
|
|
|
define $(package)_config_cmds
|
|
$($(package)_autoconf)
|
|
endef
|
|
|
|
define $(package)_build_cmds
|
|
$(MAKE) $($(package)_build_opts)
|
|
endef
|
|
|
|
define $(package)_stage_cmds
|
|
$(MAKE) DESTDIR=$($(package)_staging_dir) install
|
|
endef
|
|
|
|
define $(package)_postprocess_cmds
|
|
endef
|