Skip to content

Instantly share code, notes, and snippets.

Created April 28, 2017 07:26
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/45620acce8ddda1f0850b5531b0b862e to your computer and use it in GitHub Desktop.
Save anonymous/45620acce8ddda1f0850b5531b0b862e to your computer and use it in GitHub Desktop.
# vim: ts=2 sts=2 sw=2 et ft=sh
# Maintainer: Andreas Gerlach <andigerlach76@gmail.com>
# Updated by: Brad Erhart <brae.04+aur@gmail.com>
pkgname=docker-machine-kvm
pkgver=0.10.0
pkgrel=1
pkgdesc="KVM driver for docker-machine"
url="https://github.com/dhiltgen/docker-machine-kvm"
license=('Apache')
arch=('x86_64')
depends=(
'docker-machine'
'libvirt'
'firewalld'
'ebtables'
'dnsmasq'
)
optdepends=(
'docker: to manage the containers in the machine'
)
makedepends=()
source=("https://github.com/dhiltgen/docker-machine-kvm/releases/download/v$pkgver/docker-machine-driver-kvm-ubuntu16.04")
sha256sums=('d5cd0a1241a157aa68fbb175c4de802a953affe0dcf3e9b93e434acd91277e34')
package() {
cd "$srcdir"
install -d "$pkgdir/usr/bin"
install -m755 docker-machine-driver-kvm-ubuntu16.04 "$pkgdir/usr/bin/docker-machine-driver-kvm"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment