Changelog: - update trust-dns to hickory - never report an error when the syslog init fails - dependency updates Signed-off-by: Oskari Rauta <oskari.rauta@gmail.com>
43 lines
1.2 KiB
Makefile
43 lines
1.2 KiB
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=aardvark-dns
|
|
PKG_VERSION:=1.9.0
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
PKG_SOURCE_URL:=https://codeload.github.com/containers/aardvark-dns/tar.gz/v$(PKG_VERSION)?
|
|
PKG_HASH:=d6b51743d334c42ec98ff229be044b5b2a5fedf8da45a005447809c4c1e9beea
|
|
|
|
PKG_MAINTAINER:=Oskari Rauta <oskari.rauta@gmail.com>
|
|
PKG_LICENSE:=Apache-2.0
|
|
PKG_LICENSE_FILES:=LICENSE
|
|
|
|
PKG_BUILD_DEPENDS:=rust/host
|
|
PKG_BUILD_PARALLEL:=1
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include ../../lang/rust/rust-package.mk
|
|
|
|
define Package/aardvark-dns
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
DEPENDS:=$(RUST_ARCH_DEPENDS)
|
|
TITLE:=authoritative dns server for container records
|
|
URL:=https://github.com/containers/aardvark-dns
|
|
endef
|
|
|
|
define Package/aardvark-dns/description
|
|
Aardvark-dns is an authoritative dns server for A/AAAA container records.
|
|
It can forward other requests to configured resolvers.
|
|
|
|
It is mostly intended to be used with Netavark which will
|
|
launch it automatically if both are installed.
|
|
endef
|
|
|
|
define Package/aardvark-dns/install
|
|
$(INSTALL_DIR) $(1)/usr/lib/podman
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/bin/aardvark-dns $(1)/usr/lib/podman/
|
|
endef
|
|
|
|
$(eval $(call RustBinPackage,aardvark-dns))
|
|
$(eval $(call BuildPackage,aardvark-dns))
|