wok annotate mpfr/receipt @ rev 520

Paving the road for gcc-4.3.0, add: gmp + mpfr
author Christophe Lincoln <pankso@slitaz.org>
date Wed Apr 09 00:36:02 2008 +0200 (2008-04-09)
parents
children dd81cdb202c6
rev   line source
pankso@520 1 # SliTaz package receipt
pankso@520 2
pankso@520 3 PACKAGE="mpfr"
pankso@520 4 VERSION="2.3.1"
pankso@520 5 CATEGORY="development"
pankso@520 6 SHORT_DESC="C library for multiple-precision floating-point computations."
pankso@520 7 MAINTAINER="pankso@slitaz.org"
pankso@520 8 DEPENDS="make"
pankso@520 9 BUILD_DEPENDS="glibc-dev make"
pankso@520 10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
pankso@520 11 WEB_SITE="http://www.mpfr.org/"
pankso@520 12 WGET_URL="http://www.mpfr.org/mpfr-current/$TARBALL"
pankso@520 13
pankso@520 14 # Rules to configure and make the package.
pankso@520 15 compile_rules()
pankso@520 16 {
pankso@520 17 cd $src
pankso@520 18 ./configure \
pankso@520 19 --prefix=/usr \
pankso@520 20 --infodir=/usr/share/info \
pankso@520 21 $CONFIGURE_ARGS
pankso@520 22 make
pankso@520 23 make DESTDIR=$PWD/_pkg install
pankso@520 24 }
pankso@520 25
pankso@520 26 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@520 27 genpkg_rules()
pankso@520 28 {
pankso@520 29 mkdir -p $fs/usr/lib
pankso@520 30 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
pankso@520 31 }
pankso@520 32