# HG changeset patch # User Christophe Lincoln # Date 1304233588 -7200 # Node ID eb613fa670901a05c8bd7638ba0e412537cac6f2 # Parent 6ec16466ed5c384b832d6244057c8342e10b8a66 bc: clean-up receipt diff -r 6ec16466ed5c -r eb613fa67090 bc/receipt --- a/bc/receipt Sun May 01 08:58:30 2011 +0200 +++ b/bc/receipt Sun May 01 09:06:28 2011 +0200 @@ -6,18 +6,18 @@ SHORT_DESC="Bc is a cmdline calculator." MAINTAINER="pankso@slitaz.org" TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://www.gnu.org/software/bc/" +WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL" +TAGS="calculator" + +DEPENDS="" BUILD_DEPENDS="flex" -WEB_SITE="http://www.gnu.org/software/bc/" -WGET_URL="http://ftp.gnu.org/pub/gnu/bc/$TARBALL" -TAGS="calculator" # Rules to configure and make the package. compile_rules() { - cd $src - ./configure --prefix=/usr --infodir=/usr/share/info \ - --mandir=/usr/share/man $CONFIGURE_ARGS && - make && + cd $src + ./configure && make && make DESTDIR=$PWD/_pkg install }