#!/bin/bash

DEPS=(glibc gmp)
SOURCE=https://www.mpfr.org/mpfr-current/mpfr-4.1.0.tar.xz

DESC="Multiple-precision floating-point library"

build () {
    ./configure --prefix=/usr --disable-static --enable-thread-safe --docdir=/usr/share/doc/mpfr-4.1.0
    make
    make html

    make check

    make DESTDIR=$PKG_DEST install
    make DESTDIR=$PKG_DEST install-html
}