wok diff hunspell/receipt @ rev 22936

updated hunspell and hunspell-dev (1.3.3 -> 1.7.0)
author Hans-G?nter Theisgen
date Thu Feb 27 07:23:00 2020 +0100 (2020-02-27)
parents eeaaeada151a
children cc5eb0eba63e
line diff
     1.1 --- a/hunspell/receipt	Fri Mar 24 15:04:56 2017 +0100
     1.2 +++ b/hunspell/receipt	Thu Feb 27 07:23:00 2020 +0100
     1.3 @@ -1,29 +1,37 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="hunspell"
     1.7 -VERSION="1.3.3"
     1.8 +VERSION="1.7.0"
     1.9  CATEGORY="system-tools"
    1.10  SHORT_DESC="A spell checker."
    1.11  MAINTAINER="pascal.bellard@slitaz.org"
    1.12  LICENSE="GPL2 LGPL2.1 MPL"
    1.13 +WEB_SITE="https://hunspell.github.io/"
    1.14 +
    1.15  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.16 -WEB_SITE="http://hunspell.sourceforge.net/"
    1.17 -WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
    1.18 +WGET_URL="https://github.com/$PACKAGE/$PACKAGE/archive/v$VERSION.tar.gz"
    1.19 +
    1.20 +BUILD_DEPENDS="autoconf automake libtool"
    1.21  
    1.22  # Rules to configure and make the package.
    1.23  compile_rules()
    1.24  {
    1.25 -	./configure --prefix=/usr --infodir=/usr/share/info \
    1.26 -	--mandir=/usr/share/man \
    1.27 -	$CONFIGURE_ARGS &&
    1.28 +	./autoreconf -vfi &&
    1.29 +	./configure				\
    1.30 +		--prefix=/usr			\
    1.31 +		--infodir=/usr/share/info	\
    1.32 +		--mandir=/usr/share/man		\
    1.33 +		--disable-nls			\
    1.34 +		$CONFIGURE_ARGS &&
    1.35  	make &&
    1.36 -	make -j 1 DESTDIR=$DESTDIR install
    1.37 +	make DESTDIR=$DESTDIR install
    1.38  }
    1.39  
    1.40  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.41  genpkg_rules()
    1.42  {
    1.43  	mkdir -p $fs/usr/lib
    1.44 -	cp -a $install/usr/lib/*.so* $fs/usr/lib
    1.45 -	cp -a $install/usr/bin $fs/usr
    1.46 +
    1.47 +	cp -a $install/usr/lib/*.so*	$fs/usr/lib
    1.48 +	cp -a $install/usr/bin		$fs/usr
    1.49  }