37 lines
886 B
Bash
37 lines
886 B
Bash
# Maintainer: Anas Elgarhy <anas.elgarhy.dev@gmail.com>
|
|
pkgname=aarty
|
|
pkgver=0.1.0
|
|
pkgrel=1
|
|
epoch=
|
|
pkgdesc="A simple CLI tool to convert the images to ASCII art 🦀💙"
|
|
arch=(x86_64)
|
|
url="https://github.com/anas-elgarhy/aarty"
|
|
license=('MIT')
|
|
makedepends=(cargo)
|
|
provides=(aarty)
|
|
conflicts=()
|
|
replaces=(aarty)
|
|
install=
|
|
changelog=
|
|
source=("$pkgname-$pkgver.tar.gz::https://static.crates.io/crates/$pkgname/$pkgname-$pkgver.crate")
|
|
noextract=()
|
|
|
|
prepare() {
|
|
cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
|
|
}
|
|
|
|
build() {
|
|
export RUSTUP_TOOLCHAIN=stable
|
|
export CARGO_TARGET_DIR=target
|
|
cargo build --frozen --release --all-features
|
|
}
|
|
|
|
check() {
|
|
export RUSTUP_TOOLCHAIN=stable
|
|
cargo test --frozen --all-features
|
|
}
|
|
|
|
package() {
|
|
sudo install -Dm0755 -t "/usr/bin/" "target/release/$pkgname"
|
|
}
|
|
sha256sums=('0bdf82de5b48760e9dcaee0f474ac8cdc333969c60734c4aaa79bc33930a755f')
|