wok view hunspell/receipt @ rev 19861

hunspell: typo
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Mar 24 15:04:56 2017 +0100 (2017-03-24)
parents c11b812cd39a
children 47098345fc68
line source
1 # SliTaz package receipt.
3 PACKAGE="hunspell"
4 VERSION="1.3.3"
5 CATEGORY="system-tools"
6 SHORT_DESC="A spell checker."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2 LGPL2.1 MPL"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://hunspell.sourceforge.net/"
11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 ./configure --prefix=/usr --infodir=/usr/share/info \
17 --mandir=/usr/share/man \
18 $CONFIGURE_ARGS &&
19 make &&
20 make -j 1 DESTDIR=$DESTDIR install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/lib
27 cp -a $install/usr/lib/*.so* $fs/usr/lib
28 cp -a $install/usr/bin $fs/usr
29 }