summaryrefslogtreecommitdiff
path: root/community/libmatio/PKGBUILD
blob: 367f011ace1070cc03b2abc4ed21845b29287d69 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# $Id: PKGBUILD 19607 2010-06-26 05:40:09Z shusmann $
# Maintainer: Stefan Husmann <stefan-husmann@t-online.de>
# Contributor: William Rea <sillywilly@gmail.com>
pkgname=libmatio
pkgver=1.3.3
pkgrel=2
pkgdesc="A C library with a fortran 90/95 module interface for reading/writing MATLAB MAT-files"
arch=('i686' 'x86_64' 'mips64el')
license=('LGPL')
url="http://sourceforge.net/projects/matio"
depends=('gcc-libs')
options=('!libtool')
source=(http://downloads.sourceforge.net/sourceforge/matio/matio-$pkgver.tar.gz)
md5sums=('5c12a98f391de000e88b5a1b20d74abf')

build() {
  cd $srcdir/matio-$pkgver
  ./bootstrap 
  ./configure --prefix=/usr --enable-fortran --enable-shared 
  make 
}
 
package() {
  cd $srcdir/matio-$pkgver
  make DESTDIR=$pkgdir install
}