summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 1e3ae29d32338dd13e13944aa29a15cc7c333a03 (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
28
29
30
# vim: ts=2 sts=2 sw=2 et ft=sh
# Maintainer: Brad Erhart <brae.04+aur@gmail.com>

pkgname=docker-machine-kvm
pkgver=0.10.1
pkgrel=1
pkgdesc="KVM driver for docker-machine"
url="https://github.com/tdilauro/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/tdilauro/docker-machine-kvm/releases/download/v$pkgver/docker-machine-driver-kvm-ubuntu16.04")
sha256sums=('97f215ac0b466cc410ddd370263ad5ccb85e3b5cb199db04bce30e539b218dca')

package() {
  cd "$srcdir"
  install -d "$pkgdir/usr/bin"
  install -m755 docker-machine-driver-kvm-ubuntu16.04 "$pkgdir/usr/bin/docker-machine-driver-kvm"
}