wok view aspell/receipt @ rev 20723

updated aspell (0.60.6 -> 0.60.6.1)
author Hans-G?nter Theisgen
date Fri Feb 08 16:54:23 2019 +0100 (2019-02-08)
parents 11b5e93cb5f2
children ecf6a1a7b559
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/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="ftp://ftp.gnu.org/gnu/aspell/$TARBALL"
13 TAGS="spell check"
14 HOST_ARCH="i486 arm"
16 DEPENDS="ncursesw"
17 BUILD_DEPENDS="ncursesw-dev libtinfo"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 export LDFLAGS="$LDFLAGS -ltinfo"
23 ./configure $CONFIGURE_ARGS &&
24 make &&
25 make install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/lib
32 cp -a $install/usr/bin $fs/usr
33 cp -a $install/usr/lib/*.so* $fs/usr/lib
34 cp -a $install/usr/lib/aspell* $fs/usr/lib
35 # Remove unneeded files
36 rm -f $fs/usr/lib/aspell*/*.*a
37 }