mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-08 18:22:30 +01:00
43 lines
1.2 KiB
Plaintext
43 lines
1.2 KiB
Plaintext
# Contributor: Joe Searle <joe@jsearle.net>
|
|
# Maintainer: Joe Searle <joe@jsearle.net>
|
|
pkgname=pastel
|
|
pkgver=0.9.0
|
|
pkgrel=2
|
|
pkgdesc="A command-line tool to generate, analyze, convert and manipulate colors"
|
|
url="https://github.com/sharkdp/pastel"
|
|
arch="all !s390x !riscv64" # rust/cargo
|
|
license="Apache-2.0"
|
|
makedepends="rust cargo cargo-auditable"
|
|
source="$pkgname-$pkgver.tar.gz::https://github.com/sharkdp/pastel/archive/v$pkgver.tar.gz"
|
|
subpackages="
|
|
$pkgname-bash-completion
|
|
$pkgname-zsh-completion
|
|
$pkgname-fish-completion
|
|
"
|
|
options="net" # fetch crates
|
|
|
|
|
|
build() {
|
|
export SHELL_COMPLETIONS_DIR="$builddir/completions"
|
|
cargo auditable build --release
|
|
}
|
|
|
|
check() {
|
|
cargo test
|
|
}
|
|
|
|
package() {
|
|
install -Dm755 "target/release/pastel" "$pkgdir/usr/bin/$pkgname"
|
|
|
|
install -Dm644 "$builddir"/completions/pastel.bash \
|
|
"$pkgdir"/usr/share/bash-completion/completions/pastel
|
|
install -Dm644 "$builddir"/completions/_pastel \
|
|
"$pkgdir"/usr/share/zsh/site-functions/_pastel
|
|
install -Dm644 "$builddir"/completions/pastel.fish \
|
|
"$pkgdir"/usr/share/fish/vendor_completions.d/pastel.fish
|
|
}
|
|
|
|
sha512sums="
|
|
b1dc85062429ca8acda14bec88dcb6057643c1e999582c7e1595ca730312fc8164c558c7459e754cb934a0a1f53ccd8fc542a4ab28dfe05f2f023d223384c464 pastel-0.9.0.tar.gz
|
|
"
|