wok annotate muparser/receipt @ rev 15639

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