wok-next view aspell/receipt @ rev 19715

Fix building: pciutils, pcmanfm-legacy, arj
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sat May 13 17:25:31 2017 +0300 (2017-05-13)
parents 11b5e93cb5f2
children 2c48a1f40bb6
line source
1 # SliTaz package receipt.
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 TAGS="spell check"
11 HOST_ARCH="i486 arm"
13 TARBALL="$PACKAGE-$VERSION.tar.gz"
14 WGET_URL="$GNU_MIRROR/aspell/$TARBALL"
16 DEPENDS="ncurses"
17 BUILD_DEPENDS="perl gettext ncurses-dev"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 ./configure $CONFIGURE_ARGS && make && make install
24 install -v -m755 -d $install/usr/share/doc/aspell-$VERSION/aspell.html &&
25 install -v -m755 -d $install/usr/share/doc/aspell-$VERSION/aspell-dev.html &&
26 install -v -m644 manual/aspell.html/* \
27 $install/usr/share/doc/aspell-$VERSION/aspell.html &&
28 install -v -m644 manual/aspell-dev.html/* \
29 $install/usr/share/doc/aspell-$VERSION/aspell-dev.html
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 cook_copy_folders bin
36 find $fs -name '*-config' -delete
37 cook_copy_files *.so* *.amf *filter.info *.cmap *.cset *.kbd *.amf spell ispell
39 ln -svfn aspell-0.60 $fs/usr/lib/aspell
40 }