2022-06-02 12:50:33 +00:00
|
|
|
package=unbound
|
2024-10-18 12:50:57 +00:00
|
|
|
$(package)_version=1.22.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
|
2024-10-18 12:50:57 +00:00
|
|
|
$(package)_sha256_hash=c5dd1bdef5d5685b2cedb749158dd152c52d44f65529a34ac15cd88d4b1b3d43
|
2023-02-16 13:49:46 +00:00
|
|
|
$(package)_dependencies=openssl expat
|
2022-06-02 12:50:33 +00:00
|
|
|
|
|
|
|
define $(package)_set_vars
|
2024-02-18 22:22:14 +00:00
|
|
|
$(package)_config_opts=--disable-shared --enable-static --without-pyunbound --prefix=$(host_prefix)
|
|
|
|
$(package)_config_opts+=--with-libexpat=$(host_prefix) --with-ssl=$(host_prefix) --with-libevent=no
|
|
|
|
$(package)_config_opts+=--without-pythonmodule --disable-flto --with-pthreads --with-libunbound-only
|
2022-06-02 12:50:33 +00:00
|
|
|
$(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
|
2024-10-18 12:50:57 +00:00
|
|
|
rm configure~ doc/*.odp doc/*.pdf contrib/*.tar.gz contrib/*.tar.bz2 &&\
|
2024-06-19 11:03:45 +00:00
|
|
|
rm -rf testdata dnscrypt/testdata &&\
|
2023-02-16 13:49:46 +00:00
|
|
|
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
|
2024-10-18 12:50:57 +00:00
|
|
|
|
|
|
|
define $(package)_postprocess_cmds
|
|
|
|
rm -rf share
|
|
|
|
endef
|