diff options
author | root <root@rshg054.dnsready.net> | 2012-05-03 00:01:52 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2012-05-03 00:01:52 +0000 |
commit | 5520a8b04cecf4af812cbf2285e9ab6efabe147f (patch) | |
tree | 842c0bf2e354faca64f878dce5a2166c7b0dad64 /community/libmatio | |
parent | defe74c9cba07c321ad2869d8f6872e64a167324 (diff) |
Thu May 3 00:01:52 UTC 2012
Diffstat (limited to 'community/libmatio')
-rw-r--r-- | community/libmatio/PKGBUILD | 27 |
1 files changed, 13 insertions, 14 deletions
diff --git a/community/libmatio/PKGBUILD b/community/libmatio/PKGBUILD index 43744b2a6..1ee757598 100644 --- a/community/libmatio/PKGBUILD +++ b/community/libmatio/PKGBUILD @@ -1,28 +1,27 @@ -# $Id: PKGBUILD 67968 2012-03-16 13:07:02Z giovanni $ -# Maintainer: Stefan Husmann <stefan-husmann@t-online.de> +# $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.3.3 -pkgrel=3 +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=('gcc-libs') -makedepends=('gcc-fortran') +depends=('zlib') options=('!libtool') -source=(http://downloads.sourceforge.net/sourceforge/matio/matio-$pkgver.tar.gz) -md5sums=('5c12a98f391de000e88b5a1b20d74abf') +source=("http://downloads.sourceforge.net/matio/matio-$pkgver.tar.gz") +sha1sums=('70dbf09984ade6adfb38c1b62ae5585ff7f85e05') build() { - cd $srcdir/matio-$pkgver - ./bootstrap - ./configure --prefix=/usr --enable-fortran --enable-shared - make -j1 + cd "${srcdir}"/matio-$pkgver + ./configure --prefix=/usr --enable-shared + make } package() { - cd $srcdir/matio-$pkgver - make DESTDIR=$pkgdir install + cd "${srcdir}"/matio-$pkgver + make DESTDIR="${pkgdir}" install } |