wok-next view hunspell/receipt @ rev 21115

Update gtk3
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sat Jan 12 17:51:19 2019 +0200 (2019-01-12)
parents 315a1dc02606
children 59c6b07cb8eb
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-dev readline-dev"
15 SPLIT="$PACKAGE-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=$install 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 }