summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 6b208706a88031484515025b8f1190375dd42d55 (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
31
32
33
34
35
36
37
38
39
40
41
42
43
# Maintainer: Tyler Cook <aur@fossable.org>
arch=('x86_64')
conflicts=("goldboot")
depends=('edk2-ovmf' 'qemu-base' 'qemu-ui-gtk' 'zstd' 'gtk4')
license=('GNU Affero General Public License v3.0')
makedepends=('cargo' 'pkg-config')
pkgdesc='Immutable infrastructure for the desktop!'
pkgname='goldboot-git'
pkgrel='1'
pkgver='0.0.2'
provides=("goldboot")
sha512sums=('SKIP')
source=("git+https://github.com/fossable/goldboot")
url='https://github.com/fossable/goldboot'

pkgver() {
	cd "${srcdir}"
	git describe --tags | sed 's/^[^0-9]*//'
}

build() {
	cd "$pkgname-$pkgver"
	cargo build --release
	local compgen="target/release/$pkgname --completion"
	$compgen bash >"completions/$pkgname"
	$compgen fish >"completions/$pkgname.fish"
	$compgen zsh >"completions/_$pkgname"
}

check() {
	cd "$pkgname-$pkgver"
	cargo test --all-features
}

package() {
	cd "$pkgname-$pkgver"
	install -Dm 755 "target/release/$pkgname" -t "$pkgdir/usr/bin"
	install -Dm 644 README.md -t "$pkgdir/usr/share/doc/$pkgname"
	install -Dm 644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname"
	install -Dm 644 "completions/$pkgname" -t "$pkgdir/usr/share/bash-completion/completions/"
	install -Dm 644 "completions/$pkgname.fish" -t "$pkgdir/usr/share/fish/vendor_completions.d/"
	install -Dm 644 "completions/_$pkgname" -t "$pkgdir/usr/share/zsh/site-functions/"
}