Create The AUR package 😆
This commit is contained in:
parent
b0da831456
commit
a90b4070f1
4 changed files with 55 additions and 0 deletions
37
archpackage/PKGBUILD
Normal file
37
archpackage/PKGBUILD
Normal file
|
@ -0,0 +1,37 @@
|
|||
# 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')
|
Loading…
Add table
Add a link
Reference in a new issue