wok annotate muparser/receipt @ rev 14656
cairo-compmgr-core: no hard coded version for vala
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Wed Jun 05 12:23:59 2013 +0200 (2013-06-05) |
parents | 887906df0ec4 |
children | 23c3aed67cd9 |
rev | line source |
---|---|
devl547@13977 | 1 # SliTaz package receipt. |
devl547@13977 | 2 |
devl547@13977 | 3 PACKAGE="muparser" |
devl547@13977 | 4 VERSION="2.2.3" |
devl547@13977 | 5 CATEGORY="development" |
devl547@13977 | 6 SHORT_DESC="A fast math parser library" |
devl547@13977 | 7 MAINTAINER="devl547@gmail.com" |
devl547@13977 | 8 DEPENDS="" |
devl547@13977 | 9 BUILD_DEPENDS="" |
devl547@13977 | 10 TARBALL="muparser_v2_2_3.zip" |
devl547@13977 | 11 WEB_SITE="http://muparser.beltoforion.de/" |
devl547@13977 | 12 WGET_URL="http://downloads.sourceforge.net/project/muparser/muparser/Version%202.2.3/$TARBALL" |
devl547@13977 | 13 # Rules to configure and make the package. |
devl547@13977 | 14 compile_rules() |
devl547@13977 | 15 { |
devl547@13977 | 16 cd $src |
devl547@13977 | 17 ./configure \ |
devl547@13977 | 18 --disable-samples \ |
devl547@13977 | 19 $CONFIGURE_ARGS && |
devl547@13977 | 20 make $MAKEFLAGS && make DESTDIR=$DESTDIR install |
devl547@13977 | 21 } |
devl547@13977 | 22 |
devl547@13977 | 23 # Rules to gen a SliTaz package suitable for Tazpkg. |
devl547@13977 | 24 genpkg_rules() |
devl547@13977 | 25 { |
devl547@13977 | 26 mkdir -p $fs/usr/ |
pascal@13981 | 27 #cp -a $install/usr/bin $fs/usr/ |
devl547@13977 | 28 cp -a $install/usr/lib $fs/usr/ |
devl547@13977 | 29 } |