wok view hunspell/receipt @ rev 22957

updated iptables and iptables-dev (1.4.21 -> 1.8.4)
author Hans-G?nter Theisgen
date Fri Feb 28 15:41:30 2020 +0100 (2020-02-28)
parents 47098345fc68
children 5ea0ce1cecc0
line source
1 # SliTaz package receipt.
3 PACKAGE="hunspell"
4 VERSION="1.7.0"
5 CATEGORY="system-tools"
6 SHORT_DESC="A spell checker."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2 LGPL2.1 MPL"
9 WEB_SITE="https://hunspell.github.io/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="https://github.com/$PACKAGE/$PACKAGE/archive/v$VERSION.tar.gz"
14 BUILD_DEPENDS="autoconf automake libtool"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 autoreconf -vfi &&
20 ./configure \
21 --prefix=/usr \
22 --infodir=/usr/share/info \
23 --mandir=/usr/share/man \
24 --disable-nls \
25 $CONFIGURE_ARGS &&
26 make &&
27 make DESTDIR=$DESTDIR install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr/lib
35 cp -a $install/usr/lib/*.so* $fs/usr/lib
36 cp -a $install/usr/bin $fs/usr
37 }