wok-current rev 24933
updated muparser and muparser-dev (2.2.6.1 -> 2.3.3)
author | Hans-G?nter Theisgen |
---|---|
date | Wed Apr 13 17:29:40 2022 +0100 (2022-04-13) |
parents | 2ce7eccb169e |
children | 4200a0a66d4f |
files | muparser-dev/receipt muparser/description.txt muparser/receipt |
line diff
1.1 --- a/muparser-dev/receipt Wed Apr 13 17:02:22 2022 +0100 1.2 +++ b/muparser-dev/receipt Wed Apr 13 17:29:40 2022 +0100 1.3 @@ -1,7 +1,7 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="muparser-dev" 1.7 -VERSION="2.2.6.1" 1.8 +VERSION="2.3.3" 1.9 CATEGORY="development" 1.10 SHORT_DESC="A fast mathematical expression parser library - development files." 1.11 MAINTAINER="devl547@gmail.com" 1.12 @@ -14,8 +14,6 @@ 1.13 # Rules to gen a SliTaz package suitable for Tazpkg. 1.14 genpkg_rules() 1.15 { 1.16 - mkdir -p $fs/usr/lib 1.17 - 1.18 - cp -a $install/usr/lib/pkgconfig $fs/usr/lib 1.19 - cp -a $install/usr/include $fs/usr 1.20 + cook_copy_folders include 1.21 + cook_copy_folders pkgconfig 1.22 }
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/muparser/description.txt Wed Apr 13 17:29:40 2022 +0100 2.3 @@ -0,0 +1,16 @@ 2.4 +Many applications require the parsing of mathematical expressions. 2.5 +The main objective muparser is to provide a fast, easy and secure way 2.6 +of doing this. 2.7 +Muparser is an extensible high performance math expression parser 2.8 +library written in C++. 2.9 +It works by transforming a mathematical expression into bytecode and 2.10 +precalculating constant parts of the expression. 2.11 +For best performance muparser allows parallelized evaluation of 2.12 +expressions with OpenMP. 2.13 + 2.14 +The library was designed with portability in mind and should compile 2.15 +on every standard compliant C++ compiler. 2.16 +The build system is based on CMake. 2.17 +The code runs on both 32 bit and 64 bit architechtures and has been 2.18 +tested using Visual Studio 2019, CLANG and GCC. 2.19 +Code samples are provided in order to help you understand its usage.
3.1 --- a/muparser/receipt Wed Apr 13 17:02:22 2022 +0100 3.2 +++ b/muparser/receipt Wed Apr 13 17:29:40 2022 +0100 3.3 @@ -1,7 +1,7 @@ 3.4 # SliTaz package receipt. 3.5 3.6 PACKAGE="muparser" 3.7 -VERSION="2.2.6.1" 3.8 +VERSION="2.3.3" 3.9 CATEGORY="development" 3.10 SHORT_DESC="A fast mathematical expression parser library." 3.11 MAINTAINER="devl547@gmail.com" 3.12 @@ -9,10 +9,10 @@ 3.13 WEB_SITE="https://beltoforion.de/en/muparser" 3.14 3.15 TARBALL="$PACKAGE-$VERSION.tar.gz" 3.16 -WGET_URL="https://github.com/beltoforion/$PACKAGE/archive/v$VERSION.tar.gz" 3.17 +WGET_URL="https://github.com/beltoforion/$PACKAGE/archive/v$VERSION-1.tar.gz" 3.18 3.19 -DEPENDS="" 3.20 -BUILD_DEPENDS="gcc83" 3.21 +DEPENDS="gcc83-lib-base" 3.22 +BUILD_DEPENDS="cmake gcc83" 3.23 3.24 current_version() 3.25 { 3.26 @@ -26,18 +26,18 @@ 3.27 export CC=gcc-83 3.28 export CXX=g++-83 3.29 3.30 - ./configure \ 3.31 - --disable-samples \ 3.32 - $CONFIGURE_ARGS && 3.33 + mkdir _build && 3.34 + cd _build && 3.35 + cmake .. \ 3.36 + -D ENABLE_OPENMP=OFF \ 3.37 + -D ENABLE_SAMPLES=OFF \ 3.38 + -D CMAKE_INSTALL_PREFIX=/usr && 3.39 make $MAKEFLAGS && 3.40 - make DESTDIR=$DESTDIR install 3.41 + make install DESTDIR=$DESTDIR 3.42 } 3.43 3.44 # Rules to gen a SliTaz package suitable for Tazpkg. 3.45 genpkg_rules() 3.46 { 3.47 - mkdir -p $fs/usr/ 3.48 - 3.49 - #cp -a $install/usr/bin $fs/usr/ 3.50 - cp -a $install/usr/lib $fs/usr/ 3.51 + cook_copy_folders lib 3.52 }