wok annotate muparser/receipt @ rev 20694
get-palemoon: update wget_url
author | Richard Dunbar <mojo@slitaz.org> |
---|---|
date | Mon Feb 04 01:44:39 2019 -0500 (2019-02-04) |
parents | 23c3aed67cd9 |
children | ae365a12a573 |
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" |
pascal@17869 | 9 TARBALL="muparser_v${VERSION//./_}.zip" |
devl547@13977 | 10 WEB_SITE="http://muparser.beltoforion.de/" |
pascal@17869 | 11 WGET_URL="http://downloads.sourceforge.net/project/muparser/muparser/Version%20$VERSION/$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 ./configure \ |
devl547@13977 | 20 --disable-samples \ |
devl547@13977 | 21 $CONFIGURE_ARGS && |
devl547@13977 | 22 make $MAKEFLAGS && make DESTDIR=$DESTDIR install |
devl547@13977 | 23 } |
devl547@13977 | 24 |
devl547@13977 | 25 # Rules to gen a SliTaz package suitable for Tazpkg. |
devl547@13977 | 26 genpkg_rules() |
devl547@13977 | 27 { |
devl547@13977 | 28 mkdir -p $fs/usr/ |
pascal@13981 | 29 #cp -a $install/usr/bin $fs/usr/ |
devl547@13977 | 30 cp -a $install/usr/lib $fs/usr/ |
devl547@13977 | 31 } |