wok-next view bc/receipt @ rev 21722

efivar: typo in post_install
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Sep 01 10:31:46 2020 +0000 (2020-09-01)
parents d5aab818505e
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="bc"
4 VERSION="1.07.1"
5 CATEGORY="utilities"
6 SHORT_DESC="Commandline calculator"
7 MAINTAINER="devel@slitaz.org"
8 LICENSE="GPL2 LGPL2.1"
9 WEB_SITE="https://www.gnu.org/software/bc/"
10 LFS="http://www.linuxfromscratch.org/lfs/view/stable/chapter06/bc.html"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
14 TARBALL_SHA1="b4475c6d66590a5911d30f9747361db47231640a"
16 BUILD_DEPENDS="flex readline-dev texinfo"
17 DEPENDS="ncurses readline"
19 TAGS="LFS calculator"
21 compile_rules() {
22 # Change an internal script to use sed instead of ed
23 install -m0755 $stuff/fix-libmath_h bc/fix-libmath_h
25 ./configure \
26 --with-readline \
27 $CONFIGURE_ARGS &&
28 make &&
29 make install
30 }