wok view muparser/receipt @ rev 18349

visualboyadvance: add vba.glade closes bug #146
author Richard Dunbar <mojo@slitaz.org>
date Fri Sep 11 20:23:18 2015 -0400 (2015-09-11)
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 }