wok view mpc-library/receipt @ rev 6619

Made blender source based now. This means we are compiling it instead of using a binary blob.
author Christopher Rogers <slaxemulator@gmail.com>
date Sun Oct 10 00:15:23 2010 +0000 (2010-10-10)
parents 827f40b0fa4e
children f00e7ade0d04
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=""
9 BUILD_DEPENDS="slitaz-toolchain"
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 }