diff options
author | root <root@rshg054.dnsready.net> | 2013-04-24 00:49:38 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-04-24 00:49:38 -0700 |
commit | 6e4a9ce4b0809e1eeb57f514f5ea71e2e77355bb (patch) | |
tree | 777883bcc66e4420c1eaf7aaea255326b46690e7 /community/libmatio | |
parent | d1d93fafb9ef98fdd0c9a5a486c179c03cbbfb33 (diff) |
Wed Apr 24 00:49:37 PDT 2013
Diffstat (limited to 'community/libmatio')
-rw-r--r-- | community/libmatio/PKGBUILD | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/community/libmatio/PKGBUILD b/community/libmatio/PKGBUILD index 7bc220d2c..da7660150 100644 --- a/community/libmatio/PKGBUILD +++ b/community/libmatio/PKGBUILD @@ -1,28 +1,33 @@ -# $Id: PKGBUILD 84665 2013-02-21 12:00:20Z arodseth $ +# $Id: PKGBUILD 88815 2013-04-23 01:03:57Z eric $ # Maintainer: Alexander Rødseth <rodseth@gmail.com> # Contributor: Stefan Husmann <stefan-husmann@t-online.de> # Contributor: William Rea <sillywilly@gmail.com> pkgname=libmatio -pkgver=1.5.0 -pkgrel=2 +pkgver=1.5.1 +pkgrel=1 pkgdesc='C library with a fortran 90/95 module interface for reading/writing MATLAB MAT-files' arch=('x86_64' 'i686') license=('LGPL') url='http://sourceforge.net/projects/matio' depends=('zlib') options=('!libtool' '!emptydirs') -source=("http://downloads.sourceforge.net/matio/matio-$pkgver.tar.gz") -sha256sums=('550dfa642c4ca7ad5ce5a0249264436ced14c72c116aee9fd14e99c7bd8cc72e') +source=("http://downloads.sourceforge.net/matio/matio-$pkgver.tar.bz2") +sha1sums=('12b8ed59688b2f41903ddc3e7975f21f10fe42bb') build() { - cd "$srcdir/matio-$pkgver" + cd matio-$pkgver ./configure --prefix=/usr --enable-shared make } + +check() { + cd matio-$pkgver + make check +} package() { - cd "$srcdir/matio-$pkgver" + cd matio-$pkgver make DESTDIR="$pkgdir" install } |