# HG changeset patch # User Hans-G?nter Theisgen # Date 1582784580 -3600 # Node ID 47098345fc68e11e718bca4702b84ed6982cd122 # Parent 9bdf05b1b49c952e704a5f4585ba43d451abb072 updated hunspell and hunspell-dev (1.3.3 -> 1.7.0) diff -r 9bdf05b1b49c -r 47098345fc68 hunspell-dev/receipt --- a/hunspell-dev/receipt Wed Feb 26 17:53:59 2020 +0100 +++ b/hunspell-dev/receipt Thu Feb 27 07:23:00 2020 +0100 @@ -1,21 +1,22 @@ # SliTaz package receipt. PACKAGE="hunspell-dev" -VERSION="1.3.3" +VERSION="1.7.0" CATEGORY="development" SHORT_DESC="A spell checker, development files." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="GPL2 LGPL2.1 MPL" -WEB_SITE="http://hunspell.sourceforge.net/" -WANTED="hunspell" +WEB_SITE="https://hunspell.github.io/" DEPENDS="hunspell pkg-config" +WANTED="hunspell" # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr/lib - cp -a $install/usr/lib/*a $fs/usr/lib - cp -a $install/usr/lib/pkgconfig $fs/usr/lib - cp -a $install/usr/include $fs/usr + + cp -a $install/usr/lib/*a $fs/usr/lib + cp -a $install/usr/lib/pkgconfig $fs/usr/lib + cp -a $install/usr/include $fs/usr } diff -r 9bdf05b1b49c -r 47098345fc68 hunspell/receipt --- a/hunspell/receipt Wed Feb 26 17:53:59 2020 +0100 +++ b/hunspell/receipt Thu Feb 27 07:23:00 2020 +0100 @@ -1,29 +1,37 @@ # SliTaz package receipt. PACKAGE="hunspell" -VERSION="1.3.3" +VERSION="1.7.0" CATEGORY="system-tools" SHORT_DESC="A spell checker." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="GPL2 LGPL2.1 MPL" +WEB_SITE="https://hunspell.github.io/" + TARBALL="$PACKAGE-$VERSION.tar.gz" -WEB_SITE="http://hunspell.sourceforge.net/" -WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" +WGET_URL="https://github.com/$PACKAGE/$PACKAGE/archive/v$VERSION.tar.gz" + +BUILD_DEPENDS="autoconf automake libtool" # Rules to configure and make the package. compile_rules() { - ./configure --prefix=/usr --infodir=/usr/share/info \ - --mandir=/usr/share/man \ - $CONFIGURE_ARGS && + ./autoreconf -vfi && + ./configure \ + --prefix=/usr \ + --infodir=/usr/share/info \ + --mandir=/usr/share/man \ + --disable-nls \ + $CONFIGURE_ARGS && make && - make -j 1 DESTDIR=$DESTDIR install + make DESTDIR=$DESTDIR install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr/lib - cp -a $install/usr/lib/*.so* $fs/usr/lib - cp -a $install/usr/bin $fs/usr + + cp -a $install/usr/lib/*.so* $fs/usr/lib + cp -a $install/usr/bin $fs/usr }