wok view mpfr/receipt @ rev 22763

updated florence (0.5.4 -> 0.6.3)
author Hans-G?nter Theisgen
date Fri Jan 24 17:41:17 2020 +0100 (2020-01-24)
parents 6e8b1bcb30e2
children 2a0479881723
line source
1 # SliTaz package receipt
3 PACKAGE="mpfr"
4 VERSION="4.0.2"
5 CATEGORY="development"
6 SHORT_DESC="C library for multiple-precision floating-point computations."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL3"
9 WEB_SITE="https://www.mpfr.org/"
11 TARBALL="$PACKAGE-$VERSION.tar.xz"
12 WGET_URL="${WEB_SITE}$PACKAGE-$VERSION/$TARBALL"
14 DEPENDS="gmp"
15 BUILD_DEPENDS="gmp-dev"
17 HOST_ARCH="i486 arm"
19 #--with-gmp-lib=/cross/$ARCH/sysroot/usr/lib
20 #--with-gmp-include=/cross/$ARCH/sysroot/usr/include
22 # Rules to configure and make the package.
23 compile_rules()
24 {
25 case "$ARCH" in
26 i?86)
27 ./configure \
28 --enable-thread-safe \
29 $CONFIGURE_ARGS &&
30 make &&
31 make check &&
32 make install ;;
33 *)
34 ./configure \
35 --enable-thread-safe \
36 $CONFIGURE_ARGS &&
37 make &&
38 make install ;;
39 esac
40 }
42 # Rules to gen a SliTaz package suitable for Tazpkg.
43 genpkg_rules()
44 {
45 cook_copy_files *.so*
46 }