blob: 0c157a8af865f99477f51590c2f1dda3121f4a90 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# Maintainer: bgme <i@bgme.me>
pkgname=zdns-git
pkgdesc='A command-line utility that provides high-speed DNS lookups.'
pkgver=1.0.0.363.fa7d67d
pkgrel=1
url='https://github.com/zmap/zdns'
arch=('x86_64')
license=('Apache')
depends=('glibc')
makedepends=('git' 'go')
provides=('zdns')
source=(${pkgname}::git+https://github.com/zmap/zdns.git)
sha512sums=('SKIP')
pkgver() {
cd ${pkgname}
printf "%s.%s.%s" \
"$(git tag -l|cut -d- -f1|sort -V -r|head -n1|cut -dv -f2)" \
"$(git rev-list --count HEAD)" \
"$(git rev-parse --short HEAD)"
}
build() {
cd ${pkgname}
make
}
package() {
install -D "${pkgname}/zdns" "${pkgdir}/usr/bin/zdns"
}
|