Initial commit
This commit is contained in:
commit
c8686b1e14
2 changed files with 63 additions and 0 deletions
22
.SRCINFO
Normal file
22
.SRCINFO
Normal file
|
@ -0,0 +1,22 @@
|
|||
pkgbase = awl-dns-git
|
||||
pkgdesc = A DNS client
|
||||
pkgver = 0.2.0.r35.g61ddbb3
|
||||
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.18
|
||||
makedepends = scdoc
|
||||
provides = awl-dns
|
||||
conflicts = awl-dns
|
||||
source = awl-dns-git::git+https://git.froth.zone/sam/awl.git
|
||||
sha256sums = SKIP
|
||||
|
||||
pkgname = awl-dns-git
|
41
PKGBUILD
Normal file
41
PKGBUILD
Normal file
|
@ -0,0 +1,41 @@
|
|||
# Maintainer: Sam Therapy <sam at samtherapy dot net>
|
||||
pkgname=awl-dns-git
|
||||
pkgver=0.2.0.r35.g61ddbb3
|
||||
pkgrel=1
|
||||
arch=('i686' 'pentium4' 'x86_64' 'arm' 'armv6h' 'armv7h' 'aarch64')
|
||||
pkgdesc="A DNS client"
|
||||
url="https://git.froth.zone/sam/awl"
|
||||
license=('BSD')
|
||||
makedepends=(
|
||||
'git'
|
||||
'go>=1.18'
|
||||
'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 --long | sed '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=-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"
|
||||
}
|
Loading…
Reference in a new issue