wok view muparser/receipt @ rev 15601

Add some licenses
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Dec 05 20:23:08 2013 +0000 (2013-12-05)
parents b05c1efb4d87
children d3eb5f4b53ea
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_v2_2_3.zip"
10 WEB_SITE="http://muparser.beltoforion.de/"
11 WGET_URL="http://downloads.sourceforge.net/project/muparser/muparser/Version%202.2.3/$TARBALL"
13 DEPENDS=""
14 BUILD_DEPENDS=""
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure \
21 --disable-samples \
22 $CONFIGURE_ARGS &&
23 make $MAKEFLAGS && make DESTDIR=$DESTDIR install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/
30 #cp -a $install/usr/bin $fs/usr/
31 cp -a $install/usr/lib $fs/usr/
32 }