2022-06-02 12:50:33 +00:00
|
|
|
package=unbound
|
2023-11-14 00:16:15 +00:00
|
|
|
$(package)_version=1.19.0
|
2022-06-02 12:50:33 +00:00
|
|
|
$(package)_download_path=https://www.nlnetlabs.nl/downloads/$(package)/
|
|
|
|
$(package)_file_name=$(package)-$($(package)_version).tar.gz
|
2023-11-14 00:16:15 +00:00
|
|
|
$(package)_sha256_hash=a97532468854c61c2de48ca4170de854fd3bc95c8043bb0cfb0fe26605966624
|
2023-02-16 13:49:46 +00:00
|
|
|
$(package)_dependencies=openssl expat
|
2023-06-26 09:48:19 +00:00
|
|
|
$(package)_patches=disable-glibc-reallocarray.patch
|
2022-06-02 12:50:33 +00:00
|
|
|
|
|
|
|
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)
|
2023-06-26 09:48:19 +00:00
|
|
|
$(package)_config_opts_x86_64_darwin=ac_cv_func_SHA384_Init=yes
|
2022-06-02 12:50:33 +00:00
|
|
|
$(package)_build_opts_mingw32=LDFLAGS="$($(package)_ldflags) -lpthread"
|
|
|
|
endef
|
|
|
|
|
2023-02-16 13:49:46 +00:00
|
|
|
define $(package)_preprocess_cmds
|
|
|
|
patch -p1 < $($(package)_patch_dir)/disable-glibc-reallocarray.patch &&\
|
|
|
|
autoconf
|
|
|
|
endef
|
|
|
|
|
2022-06-02 12:50:33 +00:00
|
|
|
define $(package)_config_cmds
|
2023-02-16 13:49:46 +00:00
|
|
|
$($(package)_autoconf) ac_cv_func_getentropy=no
|
2022-06-02 12:50:33 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define $(package)_build_cmds
|
|
|
|
$(MAKE) $($(package)_build_opts)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define $(package)_stage_cmds
|
|
|
|
$(MAKE) DESTDIR=$($(package)_staging_dir) install
|
|
|
|
endef
|
2023-02-16 13:49:46 +00:00
|
|
|
|
|
|
|
define $(package)_postprocess_cmds
|
|
|
|
endef
|