summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 177b5b5a5c134afa03353e4aadd6b578c580ba87 (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
44
45
46
47
48
49
50
# Maintainer: Hunter Brodie <hunterbrodie@gmail.com>
pkgname='aurora-git'
pkgver=r5.a90eeb3
pkgrel=1
pkgdesc="A minimal AUR helper written in Rust"
arch=('x86_64')
url="https://gitlab.com/hunterbrodie/aurora"
license=('GPL')
depends=('pacman')
makedepends=('cargo')
source=("$pkgname::git+https://gitlab.com/hunterbrodie/aurora.git")
md5sums=('SKIP')

pkgver()
{
	cd "$pkgname"
	
	printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}

prepare()
{
	cd "$pkgname"

	cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
}

build()
{
	cd "$pkgname"

	export RUSTUP_TOOLCHAIN=stable
	export CARGO_TARGET_DIR=target
	cargo build --frozen --release --all-features
}

check()
{
	cd "$pkgname"

	export RUSTUP_TOOLCHAIN=stable
	cargo test --frozen --all-features
}

package()
{
	cd "$pkgname"

	install -Dm0755 -t "$pkgdir/usr/bin" "target/release/aurora"
}