diff --git a/awl-dns-git/.SRCINFO b/awl-dns-git/.SRCINFO new file mode 100644 index 0000000..29eb4b9 --- /dev/null +++ b/awl-dns-git/.SRCINFO @@ -0,0 +1,23 @@ +pkgbase = awl-dns-git + pkgdesc = A DNS client + pkgver = 0.6.7.r4.g45d1aaf + pkgrel = 1 + url = https://git.froth.zone/sam/awl + arch = i686 + arch = pentium4 + arch = x86_64 + arch = arm + arch = armv6h + arch = armv7h + arch = aarch64 + license = BSD + makedepends = git + makedepends = go>=1.20 + makedepends = scdoc + provides = awl-dns + conflicts = awl-dns + options = !lto + source = awl-dns-git::git+https://git.froth.zone/sam/awl.git + sha256sums = SKIP + +pkgname = awl-dns-git diff --git a/awl-dns-git/PKGBUILD b/awl-dns-git/PKGBUILD new file mode 100644 index 0000000..d425530 --- /dev/null +++ b/awl-dns-git/PKGBUILD @@ -0,0 +1,42 @@ +# Maintainer: Sam Therapy +pkgname=awl-dns-git +pkgver=0.6.7.r4.g45d1aaf +pkgrel=1 +arch=('i686' 'pentium4' 'x86_64' 'arm' 'armv6h' 'armv7h' 'aarch64') +pkgdesc="A DNS client" +url="https://git.froth.zone/sam/awl" +options=(!lto) +license=('BSD') +makedepends=( + 'git' + 'go>=1.20' + 'scdoc' +) +provides=("${pkgname%-*}") +conflicts=("${pkgname%-*}") +source=("${pkgname}::git+https://git.froth.zone/sam/awl.git") +sha256sums=('SKIP') + + +pkgver() { + cd "$srcdir/$pkgname" + printf "%s" "$(git describe --tags --long | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g')" +} + +build() { + cd "$srcdir/$pkgname" + export CGO_CPPFLAGS="${CPPFLAGS}" + export CGO_CFLAGS="${CFLAGS}" + export CGO_CXXFLAGS="${CXXFLAGS}" + export CGO_LDFLAGS="${LDFLAGS}" + export GOFLAGS="-buildmode=pie -trimpath -ldflags=-s -ldflags=-w -ldflags=-linkmode=external -ldflags=-X=main.version=${pkgver} -mod=readonly -modcacherw" + export CGO_ENABLED=1 + + make VERSION=$pkgver DESTDIR="$pkgdir" PREFIX="/usr" +} + +package() { + cd "$srcdir/$pkgname" + make VERSION=$pkgver DESTDIR="$pkgdir" PREFIX="/usr" install + install -Dm644 LICENCE "$pkgdir/usr/share/licenses/$pkgname/LICENSE" +}