wok-current rev 21499
updated muparser and muparser-dev (2.2.3 -> 2.2.6.1)
author | Hans-G?nter Theisgen |
---|---|
date | Thu May 02 14:53:06 2019 +0100 (2019-05-02) |
parents | 01e7a064c392 |
children | e509d54c1ccc |
files | muparser-dev/receipt muparser/receipt |
line diff
1.1 --- a/muparser-dev/receipt Thu May 02 13:38:04 2019 +0100 1.2 +++ b/muparser-dev/receipt Thu May 02 14:53:06 2019 +0100 1.3 @@ -1,20 +1,21 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="muparser-dev" 1.7 -VERSION="2.2.3" 1.8 +VERSION="2.2.6.1" 1.9 CATEGORY="development" 1.10 -SHORT_DESC="A fast math parser library" 1.11 +SHORT_DESC="A fast mathematical expression parser library - development files." 1.12 MAINTAINER="devl547@gmail.com" 1.13 LICENSE="MIT" 1.14 -WANTED="muparser" 1.15 -WEB_SITE="http://muparser.beltoforion.de" 1.16 +WEB_SITE="https://beltoforion.de/article.php?a=muparser" 1.17 1.18 DEPENDS="pkg-config" 1.19 +WANTED="muparser" 1.20 1.21 # Rules to gen a SliTaz package suitable for Tazpkg. 1.22 genpkg_rules() 1.23 { 1.24 mkdir -p $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/pkgconfig $fs/usr/lib 1.29 + cp -a $install/usr/include $fs/usr 1.30 }
2.1 --- a/muparser/receipt Thu May 02 13:38:04 2019 +0100 2.2 +++ b/muparser/receipt Thu May 02 14:53:06 2019 +0100 2.3 @@ -1,31 +1,37 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="muparser" 2.7 -VERSION="2.2.3" 2.8 +VERSION="2.2.6.1" 2.9 CATEGORY="development" 2.10 -SHORT_DESC="A fast math parser library" 2.11 +SHORT_DESC="A fast mathematical expression parser library." 2.12 MAINTAINER="devl547@gmail.com" 2.13 LICENSE="MIT" 2.14 -TARBALL="muparser_v${VERSION//./_}.zip" 2.15 -WEB_SITE="http://muparser.beltoforion.de/" 2.16 -WGET_URL="http://downloads.sourceforge.net/project/muparser/muparser/Version%20$VERSION/$TARBALL" 2.17 +WEB_SITE="https://beltoforion.de/article.php?a=muparser" 2.18 + 2.19 +TARBALL="$PACKAGE-$VERSION.tar.gz" 2.20 +WGET_URL="https://github.com/beltoforion/$PACKAGE/archive/v$VERSION.tar.gz" 2.21 2.22 DEPENDS="" 2.23 -BUILD_DEPENDS="" 2.24 +BUILD_DEPENDS="gcc83" 2.25 2.26 # Rules to configure and make the package. 2.27 compile_rules() 2.28 { 2.29 - ./configure \ 2.30 - --disable-samples \ 2.31 - $CONFIGURE_ARGS && 2.32 - make $MAKEFLAGS && make DESTDIR=$DESTDIR install 2.33 + export CC=gcc-83 2.34 + export CXX=g++-83 2.35 + 2.36 + ./configure \ 2.37 + --disable-samples \ 2.38 + $CONFIGURE_ARGS && 2.39 + make $MAKEFLAGS && 2.40 + make DESTDIR=$DESTDIR install 2.41 } 2.42 2.43 # Rules to gen a SliTaz package suitable for Tazpkg. 2.44 genpkg_rules() 2.45 { 2.46 mkdir -p $fs/usr/ 2.47 - #cp -a $install/usr/bin $fs/usr/ 2.48 - cp -a $install/usr/lib $fs/usr/ 2.49 + 2.50 + #cp -a $install/usr/bin $fs/usr/ 2.51 + cp -a $install/usr/lib $fs/usr/ 2.52 }