fix: make version actually show up

It didn't before, and for some reason rearranging the GOFLAGS
consistently works.
This commit is contained in:
Sam Therapy 2022-11-07 15:44:10 +01:00
parent a38be687ff
commit c58ad5346a
Signed by: sam
GPG key ID: 4D8B07C18F31ACBD
2 changed files with 4 additions and 4 deletions

View file

@ -1,6 +1,6 @@
pkgbase = awl-dns-git
pkgdesc = A DNS client
pkgver = 0.5.2.r32.g2d94ea6
pkgver = 0.5.8.r10.ga64a260
pkgrel = 1
url = https://git.froth.zone/sam/awl
arch = i686

View file

@ -1,6 +1,6 @@
# Maintainer: Sam Therapy <sam at samtherapy dot net>
pkgname=awl-dns-git
pkgver=0.5.2.r32.g2d94ea6
pkgver=0.5.8.r10.ga64a260
pkgrel=1
arch=('i686' 'pentium4' 'x86_64' 'arm' 'armv6h' 'armv7h' 'aarch64')
pkgdesc="A DNS client"
@ -8,7 +8,7 @@ url="https://git.froth.zone/sam/awl"
license=('BSD')
makedepends=(
'git'
'go>=1.18'
# 'go>=1.18'
'scdoc'
)
provides=("${pkgname%-*}")
@ -28,7 +28,7 @@ build() {
export CGO_CFLAGS="${CFLAGS}"
export CGO_CXXFLAGS="${CXXFLAGS}"
export CGO_LDFLAGS="${LDFLAGS}"
export GOFLAGS="-buildmode=pie -trimpath -ldflags=-linkmode=external -ldflags=-X=main.version=${pkgver} -ldflags=-s -ldflags=-w -mod=readonly -modcacherw"
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"