summaryrefslogtreecommitdiff
path: root/community/libmatio/PKGBUILD
blob: 1ee7575984fced2b8f09eddefd0567d97ff75bdb (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
27
# $Id: PKGBUILD 70169 2012-05-01 11:20:31Z andrea $
# Maintainer:
# Contributor: Stefan Husmann <stefan-husmann@t-online.de>
# Contributor: William Rea <sillywilly@gmail.com>

pkgname=libmatio
pkgver=1.5.0
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')
options=('!libtool')
source=("http://downloads.sourceforge.net/matio/matio-$pkgver.tar.gz")
sha1sums=('70dbf09984ade6adfb38c1b62ae5585ff7f85e05')

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