wok-6.x annotate muparser/receipt @ rev 24495
updated dolibarr again (10.0.6 -> 14.0.5)
author | Hans-G?nter Theisgen |
---|---|
date | Sat Feb 19 13:42:19 2022 +0100 (2022-02-19) |
parents | 78bc4b109dd6 |
children | ad9008f821da |
rev | line source |
---|---|
devl547@13977 | 1 # SliTaz package receipt. |
devl547@13977 | 2 |
devl547@13977 | 3 PACKAGE="muparser" |
Hans-G?nter@21499 | 4 VERSION="2.2.6.1" |
devl547@13977 | 5 CATEGORY="development" |
Hans-G?nter@21499 | 6 SHORT_DESC="A fast mathematical expression parser library." |
devl547@13977 | 7 MAINTAINER="devl547@gmail.com" |
pascal@15601 | 8 LICENSE="MIT" |
pascal@23890 | 9 WEB_SITE="https://beltoforion.de/en/muparser" |
Hans-G?nter@21499 | 10 |
Hans-G?nter@21499 | 11 TARBALL="$PACKAGE-$VERSION.tar.gz" |
Hans-G?nter@21499 | 12 WGET_URL="https://github.com/beltoforion/$PACKAGE/archive/v$VERSION.tar.gz" |
pascal@15601 | 13 |
pascal@15601 | 14 DEPENDS="" |
Hans-G?nter@21499 | 15 BUILD_DEPENDS="gcc83" |
pascal@15601 | 16 |
pascal@24055 | 17 current_version() |
pascal@24055 | 18 { |
pascal@24055 | 19 wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ |
pascal@24055 | 20 sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' |
pascal@24055 | 21 } |
pascal@24055 | 22 |
devl547@13977 | 23 # Rules to configure and make the package. |
devl547@13977 | 24 compile_rules() |
devl547@13977 | 25 { |
Hans-G?nter@21499 | 26 export CC=gcc-83 |
Hans-G?nter@21499 | 27 export CXX=g++-83 |
Hans-G?nter@21499 | 28 |
Hans-G?nter@21499 | 29 ./configure \ |
Hans-G?nter@21499 | 30 --disable-samples \ |
Hans-G?nter@21499 | 31 $CONFIGURE_ARGS && |
Hans-G?nter@21499 | 32 make $MAKEFLAGS && |
Hans-G?nter@21499 | 33 make DESTDIR=$DESTDIR install |
devl547@13977 | 34 } |
devl547@13977 | 35 |
devl547@13977 | 36 # Rules to gen a SliTaz package suitable for Tazpkg. |
devl547@13977 | 37 genpkg_rules() |
devl547@13977 | 38 { |
devl547@13977 | 39 mkdir -p $fs/usr/ |
Hans-G?nter@21499 | 40 |
Hans-G?nter@21499 | 41 #cp -a $install/usr/bin $fs/usr/ |
Hans-G?nter@21499 | 42 cp -a $install/usr/lib $fs/usr/ |
devl547@13977 | 43 } |