wok view muparser/receipt @ rev 24027

os-prober: added dependency coreutils
author Hans-G?nter Theisgen
date Wed Mar 24 16:32:15 2021 +0100 (2021-03-24)
parents ae365a12a573
children 5ea0ce1cecc0
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/en/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 }