blob: 619594c8bfe2c6aec004a14245eee70abf7c5da1 (
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
32
33
34
35
36
37
38
39
|
# Maintainer: Mik Mueller <imse335@gmail.com>
pkgname=smarthome-cli
pkgver=2.15.0
pkgrel=1
pkgdesc="Terminal client for the smarthome-go/smarthome server."
arch=('i686' 'pentium4' 'x86_64' 'arm' 'armv7h' 'armv6h' 'aarch64')
url="https://github.com/smarthome-go/cli"
license=('GPL2')
depends=('glibc')
makedepends=('go')
source=("$pkgname-$pkgver.tar.gz::https://github.com/smarthome-go/cli/archive/refs/tags/v$pkgver.tar.gz")
b2sums=('1d758c20fe9273ce64d6508928f5eff15b43036d38d730b49671d021e556e034d3255b5a095043a9ab4c73d48f567f7c134366d32d4fc16d51f954f9ab23fbf9')
prepare() {
cd "$srcdir/cli-$pkgver"
go mod tidy
mkdir -p build/
}
build() {
cd "$srcdir/cli-$pkgver"
export CGO_CPPFLAGS="${CPPFLAGS}"
export CGO_CFLAGS="${CFLAGS}"
export CGO_CXXFLAGS="${CXXFLAGS}"
export CGO_LDFLAGS="${LDFLAGS}"
export GOFLAGS="-buildmode=pie -trimpath -ldflags=-linkmode=external -mod=readonly -modcacherw"
go build \
-v \
-o build/smarthome-cli \
.
}
package() {
cd "$srcdir/cli-$pkgver"
install -Dm644 "README.md" "$pkgdir/usr/share/doc/$pkgname/README.md"
install -Dm755 build/$pkgname "$pkgdir"/usr/bin/$pkgname
}
|