🔒 Repository is read-only – file editing is disabled.

recipes/core/mpfr/PAGBUILD.yaml main

37 linii Raw ← Powrót
12345678910111213141516171819202122232425262728293031323334353637
pkgname: mpfr
pkgver: '4.2.2'
pkgrel: '1'
pkgdesc: 'The MPFR package contains functions for multiple precision math'
url: 'https://www.mpfr.org'
arch: x86_64
license:
- 'GPL-3.0-or-later'
- 'LGPL-3.0-or-later'

depends: []
makedepends:
- gmp
- texinfo

source:
- 'https://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.xz'

sha256sums:
- SKIP

build: |
  cd mpfr-${pkgver}
  ./configure --prefix=/usr \
  	--enable-thread-safe \
  	--docdir=/usr/share/doc/mpfr-${pkgver}
  make
  # build ones first then without
  # make check below
  # again with make check below
  make check
  make DESTDIR=${PKGDIR} install
  make html
  make DESTDIR=${PKGDIR} install-html

package: |
  true