21 lines
388 B
Bash
21 lines
388 B
Bash
|
# Maintainer: Sebastian Hugentobler <shu@vanwa.ch>
|
||
|
|
||
|
pkgname=vm
|
||
|
pkgver=0.1.0
|
||
|
pkgrel=1
|
||
|
pkgdesc="Run qemu vms from configurations."
|
||
|
arch=("any")
|
||
|
url="https://code.vanwa.ch"
|
||
|
license=('MIT')
|
||
|
depends=("qemu-full" "swtpm")
|
||
|
source=(
|
||
|
"vm"
|
||
|
)
|
||
|
sha256sums=("1a6ee0ee645689953226154c3d74d23e49f1b6a5609c3ed9b344c1f2c278f0c5")
|
||
|
|
||
|
package() {
|
||
|
cd "$srcdir/"
|
||
|
|
||
|
install -Dm 755 vm "$pkgdir/usr/bin/vm"
|
||
|
}
|