mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-11 23:54:37 +08:00
27 lines
611 B
Bash
27 lines
611 B
Bash
# $Id$
|
|
# Maintainer: Antonio Rojas <arojas@archlinux.org>
|
|
# Contributor: Rémy Oudompheng <remy@archlinux.org>
|
|
|
|
pkgname=mpfi
|
|
pkgver=1.5.1
|
|
pkgrel=1
|
|
pkgdesc="C library for interval arithmetic"
|
|
arch=('i686' 'x86_64')
|
|
url="http://perso.ens-lyon.fr/nathalie.revol/software.html"
|
|
license=('GPL')
|
|
depends=('mpfr')
|
|
source=("https://gforge.inria.fr/frs/download.php/file/30130/mpfi-1.5.1.tar.gz")
|
|
md5sums=('2787d2fab9ba7fc5b171758e84892fb5')
|
|
install=mpfi.install
|
|
|
|
build() {
|
|
cd $pkgname-$pkgver
|
|
./configure --prefix=/usr --enable-shared
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $pkgname-$pkgver
|
|
make DESTDIR="$pkgdir" install
|
|
}
|