wok-next annotate mpfr4/receipt @ rev 21468

updated tcpreplay (4.2.6 -> 4.3.2)
author Hans-G?nter Theisgen
date Wed May 13 06:25:58 2020 +0100 (2020-05-13)
parents a3c581bf52b8
children
rev   line source
al@20905 1 # SliTaz package receipt v2.
al@20905 2
al@20905 3 PACKAGE="mpfr4"
al@20905 4 LEGACY_OF="mpfr"
al@20905 5 VERSION="3.1.5"
al@20905 6 CATEGORY="libdevel"
al@20905 7 SHORT_DESC="Multiple-precision floating-point computations"
al@21020 8 MAINTAINER="devel@slitaz.org"
al@20905 9 LICENSE="GPL3"
al@20906 10 WEB_SITE="https://www.mpfr.org/"
al@20905 11 LFS="http://www.linuxfromscratch.org/lfs/view/stable/chapter06/mpfr.html"
al@20905 12 REPOLOGY="mpfr"
al@20905 13
al@20905 14 TARBALL="mpfr-$VERSION.tar.xz"
al@20905 15 WGET_URL="http://www.mpfr.org/mpfr-$VERSION/$TARBALL"
al@20905 16
al@20905 17 BUILD_DEPENDS="gmp-dev texinfo"
al@20905 18
al@20905 19 compile_rules() {
al@20905 20 ./configure \
al@20905 21 --disable-static \
al@20905 22 --enable-thread-safe \
al@20905 23 $CONFIGURE_ARGS &&
al@20905 24 fix libtool &&
al@20905 25 make &&
al@20905 26 make html &&
al@20905 27 make install &&
al@20905 28 make install-html
al@20905 29 }
al@20905 30
al@20905 31 testsuite() {
al@21020 32 make check
al@20905 33 }
al@20905 34
al@20905 35 genpkg_rules() {
al@20905 36 copy libmpfr.so.4*
al@20905 37 DEPENDS="gmp"
al@20905 38 TAGS="LFS"
al@20905 39 }