# Maintainer: Matt C # Developer: axtlos # Developer: Michal S pkgname=amethyst pkgver=3.6.0 pkgrel=1 pkgdesc="A fast and efficient AUR helper" arch=('x86_64') url="https://github.com/crystal-linux/amethyst" license=('GPL3') source=("git+$url") sha256sums=('SKIP') depends=('git' 'binutils' 'fakeroot' 'pacman-contrib' 'vim' 'expac' 'less') makedepends=('cargo') conflicts=('ame') prepare() { cd "$srcdir/$pkgname" cargo fetch --locked --target "$CARCH-unknown-linux-gnu" } build() { cd "$srcdir/$pkgname" export RUSTUP_TOOLCHAIN=nightly export CARGO_TARGET_DIR=target cargo build --frozen --release } package() { cd "$srcdir/$pkgname" find target/release \ -maxdepth 1 \ -executable \ -type f \ -exec install -Dm0755 -t "${pkgdir}/usr/bin/" {} + }