2019-12-26 21:28:49 -08:00
|
|
|
# Maintainer: Edward Shen <code@eddie.sh>
|
2019-12-26 21:55:35 -08:00
|
|
|
#
|
|
|
|
# You should _always_ use the latest PKGBUILD from master, as each releases
|
|
|
|
# PKGBUILD will contain the previous release's PKGBUILD. This is because one
|
|
|
|
# cannot generate the sha512sum of the release until it's been created, and this
|
|
|
|
# file would be part of said release.
|
|
|
|
|
2019-12-26 21:28:49 -08:00
|
|
|
pkgname=bunbun
|
2019-12-26 21:55:35 -08:00
|
|
|
pkgver=0.5.0
|
2019-12-26 21:28:49 -08:00
|
|
|
pkgrel=1
|
|
|
|
depends=('gcc-libs')
|
|
|
|
makedepends=('rust' 'cargo')
|
|
|
|
arch=('i686' 'x86_64' 'armv6h' 'armv7h')
|
|
|
|
pkgdesc="Re-implementation of bunny1 in Rust"
|
|
|
|
url="https://github.com/edward-shen/bunbun"
|
|
|
|
license=('AGPL')
|
|
|
|
source=("$pkgname-$pkgver.tar.gz::https://github.com/edward-shen/$pkgname/archive/$pkgver.tar.gz")
|
2019-12-26 21:55:35 -08:00
|
|
|
sha512sums=('0ffd666acc2f456eb9f83ca0cfcb9420efbb5c135aae13fab6ff194d86b2bd6ec8d225aa9ab34797be80edc6c4341a299f808e61487e308e39ce91f8435f6692')
|
2019-12-26 21:28:49 -08:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd "$pkgname-$pkgver"
|
|
|
|
|
|
|
|
cargo build --release --locked
|
|
|
|
strip "target/release/$pkgname" || true
|
|
|
|
}
|
|
|
|
|
|
|
|
check() {
|
|
|
|
cd "$pkgname-$pkgver"
|
|
|
|
|
|
|
|
cargo test --release --locked
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
cd "$pkgname-$pkgver"
|
|
|
|
|
|
|
|
install -Dm755 "target/release/$pkgname" -t "$pkgdir/usr/bin"
|
2019-12-26 21:55:35 -08:00
|
|
|
install -Dm644 "aux/systemd/$pkgname.service" -t "$pkgdir/usr/lib/systemd/system"
|
|
|
|
install -Dm644 "$pkgname.default.yaml" "$pkgdir/etc/$pkgname.yaml"
|
2019-12-26 21:28:49 -08:00
|
|
|
}
|