wok-next view aspell/receipt @ rev 21449

updated slock (1.1 -> 1.4)
author Hans-G?nter Theisgen
date Thu May 07 07:51:56 2020 +0100 (2020-05-07)
parents d5aab818505e
children 2c6a7cefc256
line source
1 # SliTaz package receipt v2.
3 PACKAGE="aspell"
4 VERSION="0.60.6.1"
5 CATEGORY="system-tools"
6 SHORT_DESC="GNU spell checker"
7 MAINTAINER="paul@slitaz.org"
8 LICENSE="LGPL2"
9 WEB_SITE="http://aspell.net/"
10 LFS="http://www.linuxfromscratch.org/blfs/view/svn/general/aspell.html"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WGET_URL="$GNU_MIRROR/aspell/$TARBALL"
14 TARBALL_SHA1="ff1190db8de279f950c242c6f4c5d5cdc2cbdc49"
16 BUILD_DEPENDS="perl gettext-dev ncurses-dev"
17 SPLIT="$PACKAGE-dev"
19 DEPENDS_std="ncurses"
20 TAGS_std="spell check"
22 compile_rules() {
23 # fix some problems identified by gcc7:
24 sed -i '/ top.do_check ==/s/top.do_check/*&/' modules/filter/tex.cpp
25 sed -i '/word ==/s/word/*&/' prog/check_funs.cpp
27 ./configure $CONFIGURE_ARGS &&
28 fix libtool &&
29 make &&
30 make install || return 1
32 ln -svfn aspell-0.60 $install/usr/lib/aspell
34 cook_pick_docs manual/aspell.html/ manual/aspell-dev.html/
35 }