mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
22 lines
699 B
Bash
22 lines
699 B
Bash
|
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
||
|
# Contributor: William Rea <sillywilly@gmail.com>
|
||
|
pkgname=libmatio
|
||
|
pkgver=1.3.3
|
||
|
pkgrel=1
|
||
|
pkgdesc="A C library with a fortran 90/95 module interface for reading/writing MATLAB MAT-files"
|
||
|
arch=('i686' 'x86_64')
|
||
|
license=("LGPL")
|
||
|
url="http://sourceforge.net/projects/matio"
|
||
|
depends=('zlib' )
|
||
|
makedepends=('libtool' 'autoconf' 'automake')
|
||
|
options=('!libtool')
|
||
|
source=(http://downloads.sourceforge.net/sourceforge/matio/matio-1.3.3.tar.gz)
|
||
|
md5sums=('5c12a98f391de000e88b5a1b20d74abf')
|
||
|
|
||
|
build() {
|
||
|
cd $startdir/src/matio-$pkgver
|
||
|
./bootstrap &&
|
||
|
./configure --prefix=/usr --enable-fortran --enable-shared &&
|
||
|
make && make DESTDIR=$startdir/pkg install
|
||
|
}
|