# SliTaz package receipt. PACKAGE="bc" VERSION="1.07.1" CATEGORY="utilities" TAGS="calculator" SHORT_DESC="A commandline calculator." MAINTAINER="pankso@slitaz.org" LICENSE="GPL2 LGPL2.1" WEB_SITE="https://www.gnu.org/software/bc/" TARBALL="$PACKAGE-$VERSION.tar.gz" WGET_URL="https://ftp.gnu.org/gnu/$PACKAGE/$TARBALL" DEPENDS="flex ncurses readline" BUILD_DEPENDS="ed flex readline-dev texinfo" # What is the latest version available today? current_version() { wget -O - ${WGET_URL%/*} 2>/dev/null | \ sed "/latest/d;/$PACKAGE-/!d;/tar/!d;s|.*$PACKAGE-\\(.*\\).tar.*\".*|\\1|" | sort -Vr | sed q } # Rules to configure and make the package. compile_rules() { ./configure \ --with-readline \ $CONFIGURE_ARGS && make && make install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { cook_copy_files bc dc }