wok-next view mpc-library/receipt @ rev 8091
Various: fix bdep for driver intel, up driver geode & add driver mach64
author | Antoine Bodin <gokhlayeh@slitaz.org> |
---|---|
date | Sat Jan 22 14:32:05 2011 +0100 (2011-01-22) |
parents | 617d180b0c1e |
children | f43b0c1cf3d6 |
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 DEPENDS="mpfr"
9 BUILD_DEPENDS="mpfr"
10 SOURCE="mpc"
11 TARBALL="$SOURCE-$VERSION.tar.gz"
12 WEB_SITE="http://www.multiprecision.org/"
13 WGET_URL="http://www.multiprecision.org/mpc/download/$TARBALL"
15 compile_rules()
16 {
17 cd $src
18 ./configure \
19 --prefix=/usr \
20 --infodir=/usr/share/info \
21 --mandir=/usr/share/man \
22 $CONFIGURE_ARGS &&
23 make &&
24 make DESTDIR=$PWD/_pkg install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr
31 cp -a $_pkg/usr/lib $fs/usr
32 cp -a $_pkg/usr/include $fs/usr
33 }