blob: 0f643de64fe51449742caf79f41ce654eeb5ad9d (
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
|
# Maintainer: matt kasun <matt at netmaker.io>
pkgname=nmctl
pkgver=0.21.1
pkgrel=1
pkgdesc="cli to control netmaker, a platform for modern, blazing fast wg virtual networks"
arch=(x86_64)
url='https://github.com/gravitl/netmaker'
license=('Apache')
makedepends=(go)
source=("${pkgver}-${pkgrel}.tar.gz::${url}/archive/refs/tags/v${pkgver}.tar.gz")
sha256sums=('661377ce65210897225a689e74dc40c32a108b4444080e9fe867dfda90c70613')
build() {
cd "${srcdir}/netmaker-${pkgver}/cli"
CGO_ENABLED=0
go build \
-gcflags "all=-trimpath=${PWD}" \
-asmflags "all=-trimpath=${PWD}" \
-ldflags "-s -w -extldflags ${LDFLAGS}" \
-tags headless \
-o nmctl \
.
}
package() {
install -Dm755 "${srcdir}/netmaker-${pkgver}/cli/nmctl" "$pkgdir/usr/bin/nmctl"
}
|