mirror of
https://github.com/archlinux/aur.git
synced 2026-02-10 15:29:38 +01:00
Init yoo 🥰
This commit is contained in:
commit
85961578c2
2 changed files with 51 additions and 0 deletions
14
.SRCINFO
Normal file
14
.SRCINFO
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
pkgbase = aarty
|
||||
pkgdesc = A simple CLI tool to convert the images to ASCII art 🦀💙
|
||||
pkgver = 0.1.0
|
||||
pkgrel = 1
|
||||
url = https://github.com/anas-elgarhy/aarty
|
||||
arch = x86_64
|
||||
license = MIT
|
||||
makedepends = cargo
|
||||
provides = aarty
|
||||
replaces = aarty
|
||||
source = aarty-0.1.0.tar.gz::https://static.crates.io/crates/aarty/aarty-0.1.0.crate
|
||||
sha256sums = 0bdf82de5b48760e9dcaee0f474ac8cdc333969c60734c4aaa79bc33930a755f
|
||||
|
||||
pkgname = aarty
|
||||
37
PKGBUILD
Normal file
37
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
Reference in a new issue