wok 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 9bdf05b1b49c
children cc5eb0eba63e
files hunspell-dev/receipt hunspell/receipt
line diff
     1.1 --- a/hunspell-dev/receipt	Wed Feb 26 17:53:59 2020 +0100
     1.2 +++ b/hunspell-dev/receipt	Thu Feb 27 07:23:00 2020 +0100
     1.3 @@ -1,21 +1,22 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="hunspell-dev"
     1.7 -VERSION="1.3.3"
     1.8 +VERSION="1.7.0"
     1.9  CATEGORY="development"
    1.10  SHORT_DESC="A spell checker, development files."
    1.11  MAINTAINER="pascal.bellard@slitaz.org"
    1.12  LICENSE="GPL2 LGPL2.1 MPL"
    1.13 -WEB_SITE="http://hunspell.sourceforge.net/"
    1.14 -WANTED="hunspell"
    1.15 +WEB_SITE="https://hunspell.github.io/"
    1.16  
    1.17  DEPENDS="hunspell pkg-config"
    1.18 +WANTED="hunspell"
    1.19  
    1.20  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.21  genpkg_rules()
    1.22  {
    1.23  	mkdir -p $fs/usr/lib
    1.24 -	cp -a $install/usr/lib/*a $fs/usr/lib
    1.25 -	cp -a $install/usr/lib/pkgconfig $fs/usr/lib
    1.26 -	cp -a $install/usr/include $fs/usr
    1.27 +
    1.28 +	cp -a $install/usr/lib/*a		$fs/usr/lib
    1.29 +	cp -a $install/usr/lib/pkgconfig	$fs/usr/lib
    1.30 +	cp -a $install/usr/include		$fs/usr
    1.31  }
     2.1 --- a/hunspell/receipt	Wed Feb 26 17:53:59 2020 +0100
     2.2 +++ b/hunspell/receipt	Thu Feb 27 07:23:00 2020 +0100
     2.3 @@ -1,29 +1,37 @@
     2.4  # SliTaz package receipt.
     2.5  
     2.6  PACKAGE="hunspell"
     2.7 -VERSION="1.3.3"
     2.8 +VERSION="1.7.0"
     2.9  CATEGORY="system-tools"
    2.10  SHORT_DESC="A spell checker."
    2.11  MAINTAINER="pascal.bellard@slitaz.org"
    2.12  LICENSE="GPL2 LGPL2.1 MPL"
    2.13 +WEB_SITE="https://hunspell.github.io/"
    2.14 +
    2.15  TARBALL="$PACKAGE-$VERSION.tar.gz"
    2.16 -WEB_SITE="http://hunspell.sourceforge.net/"
    2.17 -WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
    2.18 +WGET_URL="https://github.com/$PACKAGE/$PACKAGE/archive/v$VERSION.tar.gz"
    2.19 +
    2.20 +BUILD_DEPENDS="autoconf automake libtool"
    2.21  
    2.22  # Rules to configure and make the package.
    2.23  compile_rules()
    2.24  {
    2.25 -	./configure --prefix=/usr --infodir=/usr/share/info \
    2.26 -	--mandir=/usr/share/man \
    2.27 -	$CONFIGURE_ARGS &&
    2.28 +	./autoreconf -vfi &&
    2.29 +	./configure				\
    2.30 +		--prefix=/usr			\
    2.31 +		--infodir=/usr/share/info	\
    2.32 +		--mandir=/usr/share/man		\
    2.33 +		--disable-nls			\
    2.34 +		$CONFIGURE_ARGS &&
    2.35  	make &&
    2.36 -	make -j 1 DESTDIR=$DESTDIR install
    2.37 +	make DESTDIR=$DESTDIR install
    2.38  }
    2.39  
    2.40  # Rules to gen a SliTaz package suitable for Tazpkg.
    2.41  genpkg_rules()
    2.42  {
    2.43  	mkdir -p $fs/usr/lib
    2.44 -	cp -a $install/usr/lib/*.so* $fs/usr/lib
    2.45 -	cp -a $install/usr/bin $fs/usr
    2.46 +
    2.47 +	cp -a $install/usr/lib/*.so*	$fs/usr/lib
    2.48 +	cp -a $install/usr/bin		$fs/usr
    2.49  }