wok-next view mpfr4/receipt @ rev 20936

Update cmake
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Aug 24 15:44:57 2018 +0300 (2018-08-24)
parents e7a485521d6a
children d5aab818505e
line source
1 # SliTaz package receipt v2.
3 PACKAGE="mpfr4"
4 LEGACY_OF="mpfr"
5 VERSION="3.1.5"
6 CATEGORY="libdevel"
7 SHORT_DESC="Multiple-precision floating-point computations"
8 MAINTAINER="pankso@slitaz.org"
9 LICENSE="GPL3"
10 WEB_SITE="https://www.mpfr.org/"
11 LFS="http://www.linuxfromscratch.org/lfs/view/stable/chapter06/mpfr.html"
12 REPOLOGY="mpfr"
14 TARBALL="mpfr-$VERSION.tar.xz"
15 WGET_URL="http://www.mpfr.org/mpfr-$VERSION/$TARBALL"
17 BUILD_DEPENDS="gmp-dev texinfo"
19 compile_rules() {
20 ./configure \
21 --disable-static \
22 --enable-thread-safe \
23 $CONFIGURE_ARGS &&
24 fix libtool &&
25 make &&
26 make html &&
27 make install &&
28 make install-html
29 }
31 testsuite() {
32 case "$ARCH" in
33 arm*) ;;
34 *) make check;;
35 esac
36 }
38 genpkg_rules() {
39 copy libmpfr.so.4*
40 DEPENDS="gmp"
41 TAGS="LFS"
42 }