core/m4rie/PKGBUILD
2015-04-13 07:59:57 +00:00

32 lines
603 B
Bash

# $Id$
# Maintainer: Antonio Rojas <arojas@archlinux.org>
# Contributor: Rémy Oudompheng <oudomphe@clipper.ens.fr>
pkgname=m4rie
pkgver=20140914
pkgrel=1
pkgdesc="Algorithms for linear algebra over F_2^e"
arch=('i686' 'x86_64')
url="http://m4ri.sagemath.org/"
license=('GPL')
depends=('m4ri')
source=(http://m4ri.sagemath.org/downloads/m4rie/$pkgname-$pkgver.tar.gz)
md5sums=('10e9fd98efb72568ee64c6510f4cc0de')
build() {
cd $pkgname-$pkgver
./configure --prefix=/usr
make
}
check() {
cd $pkgname-$pkgver
make check
}
package() {
cd $pkgname-$pkgver
make install DESTDIR="$pkgdir"
}