wok-next view hunspell/receipt @ rev 20990

Remove mate116 stash
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue Oct 02 22:23:34 2018 +0300 (2018-10-02)
parents 0ec6086e21d6
children d5aab818505e
line source
1 # SliTaz package receipt v2.
3 PACKAGE="hunspell"
4 VERSION="1.6.2"
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"
14 BUILD_DEPENDS="automake libtool gettext readline-dev"
15 SPLIT="hunspell-dev"
17 compile_rules() {
18 autoreconf -vfi &&
19 rm $src/po/stamp-po &&
21 ./configure \
22 --with-ui \
23 --with-readline \
24 --disable-static \
25 --without-included-gettext \
26 $CONFIGURE_ARGS &&
27 fix libtool &&
28 make &&
29 make -j1 DESTDIR=$DESTDIR install
30 }
32 genpkg_rules() {
33 case $PACKAGE in
34 hunspell)
35 copy @std
36 DEPENDS="ncurses readline"
37 ;;
38 *-dev)
39 copy @dev
40 ;;
41 esac
42 }