wok annotate muparser/receipt @ rev 21532
Up ncurses-examples (20180127) again
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sat May 04 18:49:00 2019 +0200 (2019-05-04) |
parents | d3eb5f4b53ea |
children | 78bc4b109dd6 |
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" |
Hans-G?nter@21499 | 9 WEB_SITE="https://beltoforion.de/article.php?a=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 |
devl547@13977 | 17 # Rules to configure and make the package. |
devl547@13977 | 18 compile_rules() |
devl547@13977 | 19 { |
Hans-G?nter@21499 | 20 export CC=gcc-83 |
Hans-G?nter@21499 | 21 export CXX=g++-83 |
Hans-G?nter@21499 | 22 |
Hans-G?nter@21499 | 23 ./configure \ |
Hans-G?nter@21499 | 24 --disable-samples \ |
Hans-G?nter@21499 | 25 $CONFIGURE_ARGS && |
Hans-G?nter@21499 | 26 make $MAKEFLAGS && |
Hans-G?nter@21499 | 27 make DESTDIR=$DESTDIR install |
devl547@13977 | 28 } |
devl547@13977 | 29 |
devl547@13977 | 30 # Rules to gen a SliTaz package suitable for Tazpkg. |
devl547@13977 | 31 genpkg_rules() |
devl547@13977 | 32 { |
devl547@13977 | 33 mkdir -p $fs/usr/ |
Hans-G?nter@21499 | 34 |
Hans-G?nter@21499 | 35 #cp -a $install/usr/bin $fs/usr/ |
Hans-G?nter@21499 | 36 cp -a $install/usr/lib $fs/usr/ |
devl547@13977 | 37 } |