wok-next view hunspell/receipt @ rev 21432

updated rawstudio (1.2 -> 2.0)
author Hans-G?nter Theisgen
date Tue May 05 09:38:29 2020 +0100 (2020-05-05)
parents d5aab818505e
children
line source
1 # SliTaz package receipt v2.
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/hunspell/hunspell/archive/v$VERSION.tar.gz"
13 TARBALL_SHA1="e42ea8342a191b9cd7da57d0d6ad4ae1566c5dcc"
15 BUILD_DEPENDS="automake libtool gettext-dev readline-dev"
16 SPLIT="$PACKAGE-dev"
18 DEPENDS_std="ncurses readline"
20 compile_rules() {
21 autoreconf -vfi &&
22 rm $src/po/stamp-po &&
24 ./configure \
25 --with-ui \
26 --with-readline \
27 --disable-static \
28 $CONFIGURE_ARGS &&
29 fix libtool &&
30 make &&
31 make install #-j1 DESTDIR=$install install
32 }