wok view muparser/receipt @ rev 21700

updated powermanga (0.80 -> 0.93.1)
author Hans-G?nter Theisgen
date Thu Jun 06 15:09:01 2019 +0100 (2019-06-06)
parents d3eb5f4b53ea
children 78bc4b109dd6
line source
1 # SliTaz package receipt.
3 PACKAGE="muparser"
4 VERSION="2.2.6.1"
5 CATEGORY="development"
6 SHORT_DESC="A fast mathematical expression parser library."
7 MAINTAINER="devl547@gmail.com"
8 LICENSE="MIT"
9 WEB_SITE="https://beltoforion.de/article.php?a=muparser"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="https://github.com/beltoforion/$PACKAGE/archive/v$VERSION.tar.gz"
14 DEPENDS=""
15 BUILD_DEPENDS="gcc83"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 export CC=gcc-83
21 export CXX=g++-83
23 ./configure \
24 --disable-samples \
25 $CONFIGURE_ARGS &&
26 make $MAKEFLAGS &&
27 make DESTDIR=$DESTDIR install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr/
35 #cp -a $install/usr/bin $fs/usr/
36 cp -a $install/usr/lib $fs/usr/
37 }