wok-next annotate bc/receipt @ rev 21226

updated chocolate-doom (1.4.0 -> 3.0.0)
author Hans-G?nter Theisgen
date Tue Dec 03 16:21:36 2019 +0100 (2019-12-03)
parents d5aab818505e
children
rev   line source
al@19745 1 # SliTaz package receipt v2.
pankso@5 2
pankso@5 3 PACKAGE="bc"
al@20436 4 VERSION="1.07.1"
pankso@201 5 CATEGORY="utilities"
al@21020 6 SHORT_DESC="Commandline calculator"
al@21020 7 MAINTAINER="devel@slitaz.org"
al@14468 8 LICENSE="GPL2 LGPL2.1"
al@19571 9 WEB_SITE="https://www.gnu.org/software/bc/"
al@20436 10 LFS="http://www.linuxfromscratch.org/lfs/view/stable/chapter06/bc.html"
al@19571 11
al@20436 12 TARBALL="$PACKAGE-$VERSION.tar.gz"
al@20436 13 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
al@21105 14 TARBALL_SHA1="b4475c6d66590a5911d30f9747361db47231640a"
pankso@9662 15
al@14468 16 BUILD_DEPENDS="flex readline-dev texinfo"
al@21105 17 DEPENDS="ncurses readline"
al@21105 18
al@21105 19 TAGS="LFS calculator"
pankso@5 20
al@20436 21 compile_rules() {
al@20436 22 # Change an internal script to use sed instead of ed
al@20436 23 install -m0755 $stuff/fix-libmath_h bc/fix-libmath_h
al@20436 24
al@14468 25 ./configure \
al@14468 26 --with-readline \
al@14468 27 $CONFIGURE_ARGS &&
al@14468 28 make &&
al@14468 29 make install
pankso@5 30 }