blob: 6c0f8b373dc776aeeb60be2c0a8b04f87552507a (
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
|
# Maintainer: simonsmh <simonsmh@gmail.com>
pkgname=okteto
pkgver=1.11.5
pkgrel=1
pkgdesc="Build better applications by developing and testing your code directly in Kubernetes."
arch=(x86_64 aarch64)
url="https://github.com/okteto/okteto"
license=(Apache)
optdepends=(kubectl)
makedepends=(go-pie)
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/okteto/okteto/archive/${pkgver}.tar.gz")
sha256sums=('a5ab37aae2ed7b0d3d257ec2594667fb626b341931c7a040d008d542b6fb1c9d')
build() {
cd "$pkgname-$pkgver"
go build -ldflags "-s -w -X github.com/okteto/okteto/pkg/config.VersionString=$pkgver" -tags "osusergo netgo static_build" -o okteto
}
package() {
cd "$pkgname-$pkgver"
install -Dm755 okteto "$pkgdir"/usr/bin/okteto
install -Dm644 README.md -t "$pkgdir"/usr/share/doc/"$pkgname"
install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/"$pkgname"/LICENSE
}
|