wok view aspell/receipt @ rev 23406

updated perl-text-template (1.44 -> 1.58)
author Hans-G?nter Theisgen
date Wed Apr 01 06:37:49 2020 +0100 (2020-04-01)
parents 24a8f373c227
children 095836df71b7
line source
1 # SliTaz package receipt.
3 PACKAGE="aspell"
4 VERSION="0.60.8"
5 CATEGORY="system-tools"
6 TAGS="spell check"
7 SHORT_DESC="GNU spell checker."
8 MAINTAINER="paul@slitaz.org"
9 LICENSE="LGPL2"
10 WEB_SITE="http://aspell.net/"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WGET_URL="ftp://ftp.gnu.org/gnu/aspell/$TARBALL"
15 DEPENDS="ncursesw"
16 BUILD_DEPENDS="libtinfo ncursesw-dev"
18 HOST_ARCH="i486 arm"
20 # Rules to configure and make the package.
21 compile_rules()
22 {
23 export LDFLAGS="$LDFLAGS -ltinfo"
24 ./configure $CONFIGURE_ARGS &&
25 make &&
26 make install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/lib
34 cp -a $install/usr/bin $fs/usr
35 cp -a $install/usr/lib/*.so* $fs/usr/lib
36 cp -a $install/usr/lib/aspell* $fs/usr/lib
38 # Remove unneeded files
39 rm -f $fs/usr/lib/aspell*/*.*a
40 }