aboutsummaryrefslogtreecommitdiffstats
path: root/testing/pastel/APKBUILD
blob: e15f495cc9dac4aab301df9accb93a3a7cb6ed2c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# Contributor: Joe Searle <joe@jsearle.net>
# Maintainer: Joe Searle <joe@jsearle.net>
pkgname=pastel
pkgver=0.6.0
pkgrel=0
pkgdesc="A command-line tool to generate, analyze, convert and manipulate colors"
url="https://github.com/sharkdp/pastel"
# Test 'test_distinct_fixed_colors' fails on 32bit archs
# Upstream report: https://github.com/sharkdp/pastel/issues/97 
arch="x86_64 aarch64"
license="Apache-2.0"
makedepends="rust cargo"
source="$pkgname-$pkgver.tar.gz::https://github.com/sharkdp/pastel/archive/v$pkgver.tar.gz"
subpackages="$pkgname-bash-completion:bashcomp $pkgname-zsh-completion:zshcomp $pkgname-fish-completion:fishcomp"

build() {
	export SHELL_COMPLETIONS_DIR="$builddir/completions"
	cargo build --release
}

check() {
	cargo test
}

package() {
	install -Dm755 "target/release/pastel" "$pkgdir/usr/bin/$pkgname"
}

bashcomp() {
	cd $builddir
	pkgdesc="Bash completion for $pkgname"
	install_if="$pkgname=$pkgver-r$pkgrel bash-completion"
	install -Dm644 completions/pastel.bash \
		"$subpkgdir/usr/share/bash-completion/completions/pastel"
}

zshcomp() {
	cd $builddir
	pkgdesc="Zsh completion for $pkgname"
	install_if="$pkgname=$pkgver-r$pkgrel zsh"
	install -Dm644 completions/_pastel \
		"$subpkgdir/usr/share/zsh/site-functions/_pastel"
}

fishcomp() {
	cd $builddir
	pkgdesc="Fish completion for $pkgname"
	install_if="$pkgname=$pkgver-r$pkgrel zsh"
	install -Dm644 completions/pastel.fish \
		"$subpkgdir/usr/share/fish/vendor_completions.d/pastel.fish"
}

sha512sums="a5d3e579ee1ffff381a5918dbd0161f65e1b0c74efeeefb7905bf3cb7d4772dcb0c694c21c1ad67f2da166bb0d95f77a6adaedfebfa540fe6977200c54695140  pastel-0.6.0.tar.gz"