wok-next annotate hunspell/receipt @ rev 21445

updated scim (1.4.17 -> 1.4.18)
author Hans-G?nter Theisgen
date Tue May 05 16:55:11 2020 +0100 (2020-05-05)
parents d5aab818505e
children
rev   line source
al@19741 1 # SliTaz package receipt v2.
pascal@17956 2
pascal@17956 3 PACKAGE="hunspell"
al@21141 4 VERSION="1.7.0"
pascal@17956 5 CATEGORY="system-tools"
al@19741 6 SHORT_DESC="A spell checker"
pascal@17956 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@17956 8 LICENSE="GPL2 LGPL2.1 MPL"
al@20967 9 WEB_SITE="https://hunspell.github.io/"
al@19741 10
pascal@17956 11 TARBALL="$PACKAGE-$VERSION.tar.gz"
al@19741 12 WGET_URL="https://github.com/hunspell/hunspell/archive/v$VERSION.tar.gz"
al@21141 13 TARBALL_SHA1="e42ea8342a191b9cd7da57d0d6ad4ae1566c5dcc"
al@19741 14
al@21020 15 BUILD_DEPENDS="automake libtool gettext-dev readline-dev"
al@21020 16 SPLIT="$PACKAGE-dev"
pascal@17956 17
al@21141 18 DEPENDS_std="ncurses readline"
al@21141 19
al@20575 20 compile_rules() {
al@19741 21 autoreconf -vfi &&
al@19741 22 rm $src/po/stamp-po &&
al@19741 23
al@20967 24 ./configure \
al@20967 25 --with-ui \
al@20967 26 --with-readline \
al@20967 27 --disable-static \
al@20967 28 $CONFIGURE_ARGS &&
al@20575 29 fix libtool &&
pascal@17956 30 make &&
al@21141 31 make install #-j1 DESTDIR=$install install
pascal@17956 32 }