wok-6.x diff muparser/receipt @ rev 23447
updated proj and proj-dev (6.1.0 -> 7.0.0)
author | Hans-G?nter Theisgen |
---|---|
date | Thu Apr 02 17:36:09 2020 +0100 (2020-04-02) |
parents | d3eb5f4b53ea |
children | 78bc4b109dd6 |
line diff
1.1 --- a/muparser/receipt Thu Mar 26 09:34:19 2015 +0100 1.2 +++ b/muparser/receipt Thu Apr 02 17:36:09 2020 +0100 1.3 @@ -1,31 +1,37 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="muparser" 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." 1.12 MAINTAINER="devl547@gmail.com" 1.13 LICENSE="MIT" 1.14 -TARBALL="muparser_v${VERSION//./_}.zip" 1.15 -WEB_SITE="http://muparser.beltoforion.de/" 1.16 -WGET_URL="http://downloads.sourceforge.net/project/muparser/muparser/Version%20$VERSION/$TARBALL" 1.17 +WEB_SITE="https://beltoforion.de/article.php?a=muparser" 1.18 + 1.19 +TARBALL="$PACKAGE-$VERSION.tar.gz" 1.20 +WGET_URL="https://github.com/beltoforion/$PACKAGE/archive/v$VERSION.tar.gz" 1.21 1.22 DEPENDS="" 1.23 -BUILD_DEPENDS="" 1.24 +BUILD_DEPENDS="gcc83" 1.25 1.26 # Rules to configure and make the package. 1.27 compile_rules() 1.28 { 1.29 - ./configure \ 1.30 - --disable-samples \ 1.31 - $CONFIGURE_ARGS && 1.32 - make $MAKEFLAGS && make DESTDIR=$DESTDIR install 1.33 + export CC=gcc-83 1.34 + export CXX=g++-83 1.35 + 1.36 + ./configure \ 1.37 + --disable-samples \ 1.38 + $CONFIGURE_ARGS && 1.39 + make $MAKEFLAGS && 1.40 + make DESTDIR=$DESTDIR install 1.41 } 1.42 1.43 # Rules to gen a SliTaz package suitable for Tazpkg. 1.44 genpkg_rules() 1.45 { 1.46 mkdir -p $fs/usr/ 1.47 - #cp -a $install/usr/bin $fs/usr/ 1.48 - cp -a $install/usr/lib $fs/usr/ 1.49 + 1.50 + #cp -a $install/usr/bin $fs/usr/ 1.51 + cp -a $install/usr/lib $fs/usr/ 1.52 }