wok-next view aspell/receipt @ rev 20405

Follow BLFS Chapter 9 "General Libraries": up apr, apr-util, aspell, autoconf213 (for js), dbus-glib, enchant, exempi, fftw, glib, glibmm, gmime, gobject-introspection, gsl, js, libboost.

js is 39.7MB / 87.6MB now. Looks like it's proper time to kick off polkit (Hi, Xander! You was right.)
author Aleksej Bobylev <al.bobylev@gmail.com>
date Thu Dec 07 17:39:40 2017 +0200 (2017-12-07)
parents 2c48a1f40bb6
children c4e53a39395a
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/stable/general/aspell.html"
11 HOST_ARCH="i486 arm"
13 TARBALL="$PACKAGE-$VERSION.tar.gz"
14 WGET_URL="$GNU_MIRROR/aspell/$TARBALL"
16 BUILD_DEPENDS="perl gettext ncurses-dev"
17 SPLIT="aspell-dev"
19 compile_rules() {
20 # fix some problems identified by gcc7:
21 sed -i '/ top.do_check ==/s/top.do_check/*&/' modules/filter/tex.cpp
22 sed -i '/word ==/s/word/*&/' prog/check_funs.cpp
24 ./configure $CONFIGURE_ARGS && make && make install || return 1
26 ln -svfn aspell-0.60 $install/usr/lib/aspell
28 docdir="$install/usr/share/doc/aspell-$VERSION"
29 install -v -m755 -d $docdir/aspell.html
30 install -v -m755 -d $docdir/aspell-dev.html
31 install -v -m644 manual/aspell.html/* $docdir/aspell.html
32 install -v -m644 manual/aspell-dev.html/* $docdir/aspell-dev.html
33 }
35 genpkg_rules() {
36 case $PACKAGE in
37 aspell)
38 copy @std
39 DEPENDS="ncurses"
40 TAGS="spell check"
41 ;;
42 *-dev)
43 copy @dev
44 ;;
45 esac
46 }