# HG changeset patch # User Hans-G?nter Theisgen # Date 1556805186 -3600 # Node ID ae365a12a57363b943d16b62ba14f72b250319e1 # Parent 01e7a064c392d56f667a78e09120c0cb03584a89 updated muparser and muparser-dev (2.2.3 -> 2.2.6.1) diff -r 01e7a064c392 -r ae365a12a573 muparser-dev/receipt --- a/muparser-dev/receipt Thu May 02 13:38:04 2019 +0100 +++ b/muparser-dev/receipt Thu May 02 14:53:06 2019 +0100 @@ -1,20 +1,21 @@ # SliTaz package receipt. PACKAGE="muparser-dev" -VERSION="2.2.3" +VERSION="2.2.6.1" CATEGORY="development" -SHORT_DESC="A fast math parser library" +SHORT_DESC="A fast mathematical expression parser library - development files." MAINTAINER="devl547@gmail.com" LICENSE="MIT" -WANTED="muparser" -WEB_SITE="http://muparser.beltoforion.de" +WEB_SITE="https://beltoforion.de/article.php?a=muparser" DEPENDS="pkg-config" +WANTED="muparser" # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr/lib - cp -a $install/usr/lib/pkgconfig $fs/usr/lib - cp -a $install/usr/include $fs/usr + + cp -a $install/usr/lib/pkgconfig $fs/usr/lib + cp -a $install/usr/include $fs/usr } diff -r 01e7a064c392 -r ae365a12a573 muparser/receipt --- a/muparser/receipt Thu May 02 13:38:04 2019 +0100 +++ b/muparser/receipt Thu May 02 14:53:06 2019 +0100 @@ -1,31 +1,37 @@ # SliTaz package receipt. PACKAGE="muparser" -VERSION="2.2.3" +VERSION="2.2.6.1" CATEGORY="development" -SHORT_DESC="A fast math parser library" +SHORT_DESC="A fast mathematical expression parser library." MAINTAINER="devl547@gmail.com" LICENSE="MIT" -TARBALL="muparser_v${VERSION//./_}.zip" -WEB_SITE="http://muparser.beltoforion.de/" -WGET_URL="http://downloads.sourceforge.net/project/muparser/muparser/Version%20$VERSION/$TARBALL" +WEB_SITE="https://beltoforion.de/article.php?a=muparser" + +TARBALL="$PACKAGE-$VERSION.tar.gz" +WGET_URL="https://github.com/beltoforion/$PACKAGE/archive/v$VERSION.tar.gz" DEPENDS="" -BUILD_DEPENDS="" +BUILD_DEPENDS="gcc83" # Rules to configure and make the package. compile_rules() { - ./configure \ - --disable-samples \ - $CONFIGURE_ARGS && - make $MAKEFLAGS && make DESTDIR=$DESTDIR install + export CC=gcc-83 + export CXX=g++-83 + + ./configure \ + --disable-samples \ + $CONFIGURE_ARGS && + make $MAKEFLAGS && + make DESTDIR=$DESTDIR install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr/ - #cp -a $install/usr/bin $fs/usr/ - cp -a $install/usr/lib $fs/usr/ + + #cp -a $install/usr/bin $fs/usr/ + cp -a $install/usr/lib $fs/usr/ }