zdns-git: auto updated to 1.0.0.364.84665d1-3

This commit is contained in:
Lilac 2023-09-16 05:01:26 +00:00
parent 818fb36b91
commit 3c9abb953b

View file

@ -3,7 +3,7 @@
pkgname=zdns-git pkgname=zdns-git
pkgdesc='A command-line utility that provides high-speed DNS lookups.' pkgdesc='A command-line utility that provides high-speed DNS lookups.'
pkgver=1.0.0.364.84665d1 pkgver=1.0.0.364.84665d1
pkgrel=1 pkgrel=3
url='https://github.com/zmap/zdns' url='https://github.com/zmap/zdns'
arch=('x86_64') arch=('x86_64')
license=('Apache') license=('Apache')
@ -23,9 +23,26 @@ pkgver() {
build() { build() {
cd ${pkgname} cd ${pkgname}
make export CGO_LDFLAGS="${LDFLAGS}"
export CGO_CPPFLAGS="${CPPFLAGS}"
export CGO_CFLAGS="${CFLAGS}"
export CGO_CXXFLAGS="${CXXFLAGS}"
export GOFLAGS="-buildmode=pie -trimpath -ldflags=-linkmode=external -mod=readonly -modcacherw"
go build .
for i in zsh bash fish; do
./zdns completion $i >zdns.$i
done
} }
package() { package() {
install -D "${pkgname}/zdns" "${pkgdir}/usr/bin/zdns" cd ${pkgname}
install -Dm 755 zdns "${pkgdir}/usr/bin/zdns"
install -Dm 644 LICENSE "${pkgdir}/usr/share/licenses/zdns/LICENSE"
install -Dm 644 zdns.zsh "${pkgdir}/usr/share/zsh/site-functions/_zdns"
install -Dm 644 zdns.bash "${pkgdir}/usr/share/bash-completion/completions/zdns"
install -Dm 644 zdns.fish "${pkgdir}/usr/share/fish/vendor_completions.d/zdns.fish"
} }