mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-02-13 20:02:24 +01:00
45 lines
914 B
Plaintext
45 lines
914 B
Plaintext
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=mpfr3
|
|
pkgver=3.1.1
|
|
pkgrel=1
|
|
pkgdesc="multiple-precision floating-point library"
|
|
url="http://www.mpfr.org/"
|
|
arch="all"
|
|
license="GPL LGPL"
|
|
depends=
|
|
makedepends_build="texinfo"
|
|
makedepends_host="gmp-dev"
|
|
makedepends="$makedepends_build $makedepends_host"
|
|
source="http://www.mpfr.org/mpfr-current/mpfr-$pkgver.tar.xz"
|
|
subpackages="$pkgname-doc mpfr-dev"
|
|
|
|
_builddir="$srcdir"/mpfr-$pkgver
|
|
prepare() {
|
|
cd "$_builddir"
|
|
update_config_sub || return 1
|
|
}
|
|
|
|
build() {
|
|
cd "$_builddir"
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--with-sysroot=${CBUILDROOT} \
|
|
--prefix=/usr \
|
|
--enable-shared \
|
|
|| return 1;
|
|
make || return 1;
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
make DESTDIR="${pkgdir}" install || return 1;
|
|
rm "$pkgdir"/usr/lib/*.la || return 1
|
|
}
|
|
|
|
dev() {
|
|
replaces=mpfr
|
|
default_dev
|
|
}
|
|
md5sums="91d51c41fcf2799e4ee7a7126fc95c17 mpfr-3.1.1.tar.xz"
|