summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 835724504b10611becd416d12b8cea98e86bb24b (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
# Maintainer: MatMoul <matmoul at the google email domain which is .com>

pkgname=bootdisk
pkgver=0.1
pkgrel=2
pkgdesc="Simple command to boot device with QEMU/KVM"
arch=('any')
url="https://github.com/MatMoul/bootdisk"
license=('GPL3')
depends=('qemu' 'edk2-ovmf' 'swtpm')
provides=("bootdisk=${pkgver}")
source=("git+https://github.com/MatMoul/${pkgname}.git")
#source=("git://github.com/MatMoul/${pkgname}.git#branch=")
md5sums=('SKIP')

build() {
	cd ${pkgname}
}

package() {
	cd ${pkgname}
	install -Dm755 "src/bootdisk" "${pkgdir}/usr/bin/bootdisk"
	install -Dm644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}