blob: 142d1153c22b5f1671817a7507d3820db03f7ec0 (
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
# Contributor: Jakub Jirutka <jakub@jirutka.cz>
# Maintainer: Jakub Jirutka <jakub@jirutka.cz>
pkgname=yash
pkgver=2.49
pkgrel=1
pkgdesc="Yet another shell"
url="http://yash.osdn.jp"
arch="all"
license="GPL-2.0-or-later"
depends="$pkgname-completion"
makedepends="ncurses-dev"
install="$pkgname.post-install $pkgname.pre-deinstall"
subpackages="$pkgname-doc"
source="https://github.com/magicant/yash/releases/download/$pkgver/yash-$pkgver.tar.xz"
_compdir="usr/share/yash/completion"
# Move some bigger completion files to separate subpackages.
_comps="git:git:git[gkx]:git-*
openssh-client:ssh:ssh-*
subversion:svn
valgrind:valgrind
"
for _i in $_comps; do
subpackages="$subpackages ${_i%%:*}-yash-completion:_completion:noarch"
done
subpackages="$subpackages $pkgname-completion::noarch"
prepare() {
default_prepare
# XXX: Disable hanging tests.
sed -i -e 's/\bkill[24]-p.tst\b//g' \
-e 's/\bsignal[12]-y.tst\b//g' \
tests/Makefile.in
# Remove completions for programs that are not available on Alpine
# (just to decrease size of the package).
cd share/completion
rm carthage dnf pgawk useradd who
}
build() {
./configure \
--prefix=/usr \
--mandir=/usr/share/man \
--disable-nls
make
}
check() {
# FIXME: Fix broken tests.
make tests LANG=en_US.UTF-8 || true
}
package() {
make DESTDIR="$pkgdir" install
rm -Rf "$pkgdir"/usr/share/man/ja
}
_completion() {
local name="${subpkgname%-yash-completion}"
pkgdesc="Yash completions for $name"
depends="$pkgname-completion"
install_if="$pkgname-completion=$pkgver-r$pkgrel $name"
local files=$(printf '%s\n' $_comps \
| sed -En "s|^$name:(.*)|\1|p" \
| tr : ' ')
[ "$files" ] || die "$name not found in \$_comps"
local f; for f in $files; do
amove usr/share/yash/completion/$f
done
}
completion() {
pkgdesc="$pkgdesc (command-line completion)"
depends=""
amove usr/share/yash/completion
}
sha512sums="99d98cfbe09aa746f2707217ecb506d8d5998df4a603ac276a8a67782fdcb3a7bd41fb34744f3834e319b0fdb0b1fd480cf9e2a4b835fec3e758280e13036db5 yash-2.49.tar.xz"
|