wok view mpc-library/receipt @ rev 9957

nagios-doc: bump
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Wed May 18 15:25:07 2011 +0200 (2011-05-18)
parents 37c3bd7f4b0b
children dd0e8a306fc7
line source
1 # SliTaz package receipt.
3 PACKAGE="mpc-library"
4 VERSION="0.8.2"
5 CATEGORY="development"
6 SHORT_DESC="MPC is a C library for the arithmetic of complex numbers."
7 MAINTAINER="pankso@slitaz.org"
8 SOURCE="mpc"
9 TARBALL="$SOURCE-$VERSION.tar.gz"
10 WEB_SITE="http://www.multiprecision.org/"
11 WGET_URL="http://www.multiprecision.org/mpc/download/$TARBALL"
13 DEPENDS="mpfr gmp"
14 BUILD_DEPENDS="mpfr-dev gmp-dev"
16 compile_rules()
17 {
18 cd $src
19 ./configure && make && make install
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr
26 cp -a $_pkg/usr/lib $fs/usr
27 cp -a $_pkg/usr/include $fs/usr
28 }