wok-next view bc/receipt @ rev 20294

Up libpfm (4.8.0)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Nov 08 19:02:32 2017 +0100 (2017-11-08)
parents 8da249b2c8d7
children 90a5eb560fd6
line source
1 # SliTaz package receipt v2.
3 PACKAGE="bc"
4 VERSION="1.06.95"
5 CATEGORY="utilities"
6 SHORT_DESC="Bc is a cmdline calculator"
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL2 LGPL2.1"
9 WEB_SITE="https://www.gnu.org/software/bc/"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WGET_URL="http://alpha.gnu.org/gnu/$PACKAGE/$TARBALL"
14 BUILD_DEPENDS="flex readline-dev texinfo"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure \
20 --with-readline \
21 $CONFIGURE_ARGS &&
22 make &&
23 make install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 copy @std
30 TAGS="calculator"
31 DEPENDS="ncurses readline"
32 }