Merge pull request #16131 from 1715173329/dnslookup
dnslookup: add new package
This commit is contained in:
commit
804197b246
2 changed files with 48 additions and 0 deletions
45
net/dnslookup/Makefile
Normal file
45
net/dnslookup/Makefile
Normal file
|
@ -0,0 +1,45 @@
|
||||||
|
# SPDX-License-Identifier: GPL-3.0-only
|
||||||
|
#
|
||||||
|
# Copyright (C) 2021 ImmortalWrt.org
|
||||||
|
|
||||||
|
include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
|
PKG_NAME:=dnslookup
|
||||||
|
PKG_VERSION:=1.4.8
|
||||||
|
PKG_RELEASE:=$(AUTORELESE)
|
||||||
|
|
||||||
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||||
|
PKG_SOURCE_URL:=https://codeload.github.com/ameshkov/dnslookup/tar.gz/v$(PKG_VERSION)?
|
||||||
|
PKG_HASH:=0086616a57e43b6d4f513b79ec99f997649d449729b366b40a83b09c23432c20
|
||||||
|
|
||||||
|
PKG_MAINTAINER:=Tianling Shen <cnsztl@immortalwrt.org>
|
||||||
|
PKG_LICENSE:=MIT
|
||||||
|
PKG_LICENSE_FILES:=LICENSE
|
||||||
|
|
||||||
|
PKG_BUILD_DEPENDS:=golang/host
|
||||||
|
PKG_BUILD_PARALLEL:=1
|
||||||
|
PKG_USE_MIPS16:=0
|
||||||
|
|
||||||
|
GO_PKG:=github.com/ameshkov/dnslookup
|
||||||
|
GO_PKG_LDFLAGS:=-s -w
|
||||||
|
GO_PKG_LDFLAGS_X:=main.VersionString=v$(PKG_VERSION)
|
||||||
|
|
||||||
|
include $(INCLUDE_DIR)/package.mk
|
||||||
|
include ../../lang/golang/golang-package.mk
|
||||||
|
|
||||||
|
define Package/dnslookup
|
||||||
|
SECTION:=net
|
||||||
|
CATEGORY:=Network
|
||||||
|
SUBMENU:=IP Addresses and Names
|
||||||
|
TITLE:=Simple command line utility to make DNS lookups to the specified server
|
||||||
|
URL:=https://github.com/ameshkov/dnslookup
|
||||||
|
DEPENDS:=$(GO_ARCH_DEPENDS) +ca-bundle
|
||||||
|
endef
|
||||||
|
|
||||||
|
define Package/dnslookup/description
|
||||||
|
Simple command line utility to make DNS lookups.
|
||||||
|
Supports all known DNS protocols: plain DNS, DoH, DoT, DoQ, DNSCrypt.
|
||||||
|
endef
|
||||||
|
|
||||||
|
$(eval $(call GoBinPackage,dnslookup))
|
||||||
|
$(eval $(call BuildPackage,dnslookup))
|
3
net/dnslookup/test.sh
Normal file
3
net/dnslookup/test.sh
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
dnslookup --version | grep "$PKG_VERSION"
|
Loading…
Reference in a new issue