mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-12 04:34:36 +08:00
26 lines
607 B
Bash
26 lines
607 B
Bash
|
# $Id$
|
||
|
# Maintainer: Antonio Rojas <arojas@archlinux.org>
|
||
|
# Contributor: Rémy Oudompheng <oudomphe@clipper.ens.fr>
|
||
|
|
||
|
pkgname=iml
|
||
|
pkgver=1.0.4
|
||
|
pkgrel=1
|
||
|
pkgdesc="C Library of integer matrix algorithms"
|
||
|
arch=('i686' 'x86_64')
|
||
|
url="https://cs.uwaterloo.ca/~astorjoh/iml.html"
|
||
|
license=('GPL')
|
||
|
depends=('gmp' 'cblas')
|
||
|
source=("http://www.cs.uwaterloo.ca/~astorjoh/$pkgname-$pkgver.tar.bz2")
|
||
|
md5sums=('cfe3ebc69748c4ac240d6e200b6937ca')
|
||
|
|
||
|
build() {
|
||
|
cd $pkgname-$pkgver
|
||
|
./configure --prefix=/usr --enable-shared --with-cblas=-lcblas
|
||
|
make
|
||
|
}
|
||
|
|
||
|
package() {
|
||
|
cd $pkgname-$pkgver
|
||
|
make DESTDIR="$pkgdir" install
|
||
|
}
|