Skip to content
Permalink
Newer
Older
100755 47 lines (35 sloc) 932 Bytes
December 3, 2019 15:02
1
#!/usr/bin/env beesh
2
3
# BEE_VERSION aspell-0.60.8-0
4
5
# more info: https://foo.bar.com
6
7
SRCURL[0]="https://ftp.gnu.org/pub/gnu/aspell/aspell-${PKGVERSION}.tar.gz"
8
9
SRCURL+=("https://ftp.gnu.org/pub/gnu/aspell/dict/de/aspell6-de-20161207-7-0.tar.bz2")
10
SRCURL+=("https://ftp.gnu.org/pub/gnu/aspell/dict/de-alt/aspell6-de-alt-2.1-1.tar.bz2")
11
SRCURL+=("https://ftp.gnu.org/pub/gnu/aspell/dict/en/aspell6-en-2019.10.06-0.tar.bz2")
12
13
# build_in_sourcedir
14
15
# sourcesubdir_append src
16
17
#mee_extract() {
18
# bee_extract "${@}"
19
#}
20
21
#mee_patch() {
22
# bee_patch "${@}"
23
#}
24
25
mee_configure() {
26
bee_configure \
27
--disable-nls
28
}
29
30
#mee_build() {
31
# bee_build
32
#}
33
34
#mee_install() {
35
# bee_install
36
#}
37
38
mee_install_post() {
39
for LNG in ${S}/aspell6-*; do
40
(
41
cd ${LNG}
42
./configure --vars DESTDIR=${D} ASPELL=${D}/usr/bin/aspell PREZIP=${D}/usr/bin/prezip-bin
43
make
44
make install
45
)
46
done
47
}