blob: 632ca6191076fff9361c8184e5b72f17bde3e32c (
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=2.29.1
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=('292317ccad15372dc54a057a8bc12cc15b7be5ac13f76b6210fd4ff46795bd6f')
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
}
|