wok-next view aspell-dicts/receipt @ rev 21017

Some maintenance
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue Oct 16 16:46:05 2018 +0300 (2018-10-16)
parents 543848c0e7fa
children 7b8e000b629f
line source
1 # SliTaz package receipt v2.
3 PACKAGE="aspell-dicts"
4 VERSION="0.60.6.1"
5 CATEGORY="meta"
6 SHORT_DESC="Aspell dictionary"
7 MAINTAINER="al.bobylev@gmail.com"
8 LICENSE="GPL2"
9 WEB_SITE="https://ftp.gnu.org/gnu/aspell/dict/0index.html"
10 LFS="http://www.linuxfromscratch.org/blfs/view/svn/general/aspell.html"
12 TARBALL="$PACKAGE-$VERSION.html"
13 WGET_URL="https://ftp.gnu.org/gnu/aspell/dict/0index.html"
15 BUILD_DEPENDS="aspell-dev"
16 SPLIT="\
17 aspell-af:af aspell-am:am aspell-ar:ar aspell-ast:ast \
18 aspell-az:az aspell-be:be aspell-bg:bg aspell-bn:bn \
19 aspell-br:br aspell-ca:ca aspell-cs:cs aspell-csb:csb \
20 aspell-cy:cy aspell-da:da aspell-de-alt:de-alt aspell-de:de \
21 aspell-el:el aspell-en:en aspell-eo:eo aspell-es:es \
22 aspell-et:et aspell-fa:fa aspell-fi:fi aspell-fo:fo \
23 aspell-fr:fr aspell-fy:fy aspell-ga:ga aspell-gd:gd \
24 aspell-gl:gl aspell-grc:grc aspell-gu:gu aspell-gv:gv \
25 aspell-he:he aspell-hi:hi aspell-hil:hil aspell-hr:hr \
26 aspell-hsb:hsb aspell-hu:hu aspell-hus:hus aspell-hy:hy \
27 aspell-ia:ia aspell-id:id aspell-is:is aspell-it:it \
28 aspell-kn:kn aspell-ku:ku aspell-ky:ky aspell-la:la \
29 aspell-lt:lt aspell-lv:lv aspell-mg:mg aspell-mi:mi \
30 aspell-mk:mk aspell-ml:ml aspell-mn:mn aspell-mr:mr \
31 aspell-ms:ms aspell-mt:mt aspell-nb:nb aspell-nds:nds \
32 aspell-nl:nl aspell-nn:nn aspell-ny:ny aspell-or:or \
33 aspell-pa:pa aspell-pl:pl aspell-pt_BR:pt_BR aspell-pt_PT:pt_PT \
34 aspell-qu:qu aspell-ro:ro aspell-ru:ru aspell-rw:rw \
35 aspell-sc:sc aspell-sk:sk aspell-sl:sl aspell-sr:sr \
36 aspell-sv:sv aspell-sw:sw aspell-ta:ta aspell-te:te \
37 aspell-tet:tet aspell-tk:tk aspell-tl:tl aspell-tn:tn \
38 aspell-tr:tr aspell-uk:uk aspell-uz:uz aspell-vi:vi \
39 aspell-wa:wa aspell-yi:yi aspell-zu:zu"
41 compile_rules() {
42 case $SET in
43 '')
44 wget -O- https://ftp.gnu.org/gnu/aspell/dict/0index.html \
45 | sed '/^<\/table>/,$d; /^<tr>.*/!d; s|[<>]|@|g;' \
46 | awk -F@ '{printf ("%s\t%s\t%s\n", $7, $11, $17)}' \
47 | sed '/^Name.*/d' \
48 > $WOK/$PACKAGE/.data
49 mkdir -p $install
50 ;;
51 *)
52 TARBALL=$(awk -F$'\t' -vlang=$SET '{if ($1==lang) print $3}' $WOK/$PACKAGE/.data)
53 VERSION=$(basename ${TARBALL#*$SET-} .tar.bz2)
54 WGET_URL="https://ftp.gnu.org/gnu/aspell/dict/$SET/$TARBALL"
56 [ -e "$SRC/$TARBALL" ] || wget -O $SRC/$TARBALL $WGET_URL
57 rm -r $src/*
58 extract_source
59 cd $src/*
61 ./configure &&
62 make &&
63 make install
64 ;;
65 esac
66 }
68 genpkg_rules() {
69 case $PACKAGE in
70 aspell-dicts) ;;
71 *)
72 data="$WOK/aspell-dicts/.data"
73 lang=${PACKAGE#aspell-}
74 desc=$(awk -F$'\t' -vlang=$lang '{if ($1==lang) print $2}' $data)
75 TARBALL=$(awk -F$'\t' -vlang=$lang '{if ($1==lang) print $3}' $data)
76 VERSION=$(basename ${TARBALL#*$lang-} .tar.bz2)
77 copy @std
78 DEPENDS="aspell"
79 CAT="text|$desc"
80 ;;
81 esac
82 }