wok-next view mpfr4/receipt @ rev 21722

efivar: typo in post_install
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Sep 01 10:31:46 2020 +0000 (2020-09-01)
parents a3c581bf52b8
children
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="devel@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 make check
33 }
35 genpkg_rules() {
36 copy libmpfr.so.4*
37 DEPENDS="gmp"
38 TAGS="LFS"
39 }