blob: d87d92f7fef00795935db3a5a758e4e1287b12e3 (
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
|
# Maintainer: Muhkoenig
pkgname=minikube-bin
pkgver=0.21.0
pkgrel=1
pkgdesc="Minikube is a tool that makes it easy to run Kubernetes locally"
url="https://github.com/kubernetes/minikube"
license=('Apache')
arch=('x86_64')
depends=(
'net-tools'
)
optdepends=(
'kubectl-bin: to manage the cluster'
'virtualbox'
'docker-machine-kvm'
)
makedepends=()
conflicts=('minikube')
source=(minikube_$pkgver::https://storage.googleapis.com/minikube/releases/v$pkgver/minikube-linux-amd64)
sha256sums=('c5dc6e8d85f96d4bfba321bdca93b2a828a714162653a55a9b3a6d527f517e82')
package() {
cd "$srcdir"
install -d "$pkgdir/usr/bin"
install -m755 minikube_$pkgver "$pkgdir/usr/bin/minikube"
}
|