Skip to content

Commit

Permalink
Copy arch linux from repo to folder
Browse files Browse the repository at this point in the history
Add SRCINFO to not be gitignored
  • Loading branch information
r2d4 committed Nov 28, 2016
1 parent 73a466d commit 8d5708b
Show file tree
Hide file tree
Showing 5 changed files with 47 additions and 5 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
_obj
_test

#Don't ignore arch linux .SRCINFO
!.SRCINFO

# Architecture specific extensions/prefixes
*.[568vq]
[568vq].out
Expand Down
4 changes: 0 additions & 4 deletions .gitmodules

This file was deleted.

16 changes: 16 additions & 0 deletions installers/linux/archlinux/.SRCINFO
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
pkgbase = minikube
pkgdesc = Minikube is a tool that makes it easy to run Kubernetes locally
pkgver = 0.12.2
pkgrel = 1
url = https://github.com/kubernetes/minikube
arch = x86_64
license = Apache
depends = net-tools
optdepends = virtualbox
optdepends = docker-machine-kvm
optdepends = kubectl-bin: to manage the cluster
source = minikube_0.12.2::https://storage.googleapis.com/minikube/releases/v0.12.2/minikube-linux-amd64
sha512sums = 35444b1d867f07cca40337d09e0a8f58313c6ddf85214d84d087ca9fdf803ebe6a23e69b98776e08e40916feb62fe4a052c4afeb7dde3ffc71e03d0233bb7409

pkgname = minikube

28 changes: 28 additions & 0 deletions installers/linux/archlinux/PKGBUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# vim: ts=2 sts=2 sw=2 et ft=sh
# Maintainer: Matt Rickard <mrick@google.com>

pkgname=minikube
pkgver=0.12.2
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=()

source=(minikube_$pkgver::https://storage.googleapis.com/minikube/releases/v$pkgver/minikube-linux-amd64)
sha512sums=('35444b1d867f07cca40337d09e0a8f58313c6ddf85214d84d087ca9fdf803ebe6a23e69b98776e08e40916feb62fe4a052c4afeb7dde3ffc71e03d0233bb7409')

package() {
cd "$srcdir"
install -d "$pkgdir/usr/bin"
install -m755 minikube_$pkgver "$pkgdir/usr/bin/minikube"
}
1 change: 0 additions & 1 deletion installers/linux/archlinux/minikube
Submodule minikube deleted from a283a3

0 comments on commit 8d5708b

Please sign in to comment.