wok view muparser/receipt @ rev 20497

updated diffutils (3.3 -> 3.6)
author Hans-G?nter Theisgen
date Mon Oct 29 16:27:52 2018 +0100 (2018-10-29)
parents 23c3aed67cd9
children ae365a12a573
line source
1 # SliTaz package receipt.
3 PACKAGE="muparser"
4 VERSION="2.2.3"
5 CATEGORY="development"
6 SHORT_DESC="A fast math parser library"
7 MAINTAINER="devl547@gmail.com"
8 LICENSE="MIT"
9 TARBALL="muparser_v${VERSION//./_}.zip"
10 WEB_SITE="http://muparser.beltoforion.de/"
11 WGET_URL="http://downloads.sourceforge.net/project/muparser/muparser/Version%20$VERSION/$TARBALL"
13 DEPENDS=""
14 BUILD_DEPENDS=""
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure \
20 --disable-samples \
21 $CONFIGURE_ARGS &&
22 make $MAKEFLAGS && make DESTDIR=$DESTDIR install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/
29 #cp -a $install/usr/bin $fs/usr/
30 cp -a $install/usr/lib $fs/usr/
31 }