wok annotate hunspell/receipt @ rev 20709

reverted to version 0.90 of antinat and antinat-dev
author Hans-G?nter Theisgen
date Wed Feb 06 15:57:25 2019 +0100 (2019-02-06)
parents c11b812cd39a
children 47098345fc68
rev   line source
pascal@17956 1 # SliTaz package receipt.
pascal@17956 2
pascal@17956 3 PACKAGE="hunspell"
pascal@17956 4 VERSION="1.3.3"
pascal@17956 5 CATEGORY="system-tools"
pascal@17956 6 SHORT_DESC="A spell checker."
pascal@17956 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@17956 8 LICENSE="GPL2 LGPL2.1 MPL"
pascal@17956 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@17956 10 WEB_SITE="http://hunspell.sourceforge.net/"
pascal@17956 11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
pascal@17956 12
pascal@17956 13 # Rules to configure and make the package.
pascal@17956 14 compile_rules()
pascal@17956 15 {
pascal@17956 16 ./configure --prefix=/usr --infodir=/usr/share/info \
pascal@17956 17 --mandir=/usr/share/man \
pascal@17956 18 $CONFIGURE_ARGS &&
pascal@17956 19 make &&
pascal@17956 20 make -j 1 DESTDIR=$DESTDIR install
pascal@17956 21 }
pascal@17956 22
pascal@17956 23 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@17956 24 genpkg_rules()
pascal@17956 25 {
pascal@17956 26 mkdir -p $fs/usr/lib
pascal@19861 27 cp -a $install/usr/lib/*.so* $fs/usr/lib
pascal@17956 28 cp -a $install/usr/bin $fs/usr
pascal@17956 29 }