blob: 2370ae917e0330fa4412f1b8db8c9307e6cee401 (
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
# $Id: PKGBUILD 185120 2013-05-11 09:31:27Z ronald $
# Maintainer: Ronald van Haren <ronald.archlinux.org>
# Contributor: Stefan Husmann <stefan-husmann@t-online.de>
# Contributor: damir <damir@archlinux.org>
# Contributor: Tom K <tomk@runbox.com>
pkgname=hdf5
pkgver=1.8.10_patch1
pkgrel=1
arch=('i686' 'x86_64')
pkgdesc="General purpose library and file format for storing scientific data"
url="http://www.hdfgroup.org/HDF5/"
license=('custom')
depends=('zlib' 'sh')
makedepends=('time')
source=(ftp://ftp.hdfgroup.org/HDF5/current/src/${pkgname}-${pkgver/_/-}.tar.bz2)
options=('!libtool')
sha1sums=('458cb91496e313debd55d52a7f89459a5469cceb')
build() {
cd $srcdir/${pkgname}-${pkgver/_/-}
export CFLAGS="${CFLAGS/O2/O0}"
export CXXFLAGS="${CFLAGS}"
./configure --prefix=/usr --disable-static \
--enable-hl \
--enable-threadsafe \
--enable-linux-lfs \
--enable-production \
--with-pic \
--docdir=/usr/share/doc/hdf5/ \
--with-pthread=/usr/lib/ \
--disable-sharedlib-rpath
make
}
package() {
cd $srcdir/${pkgname}-${pkgver/_/-}
make -j1 DESTDIR=${pkgdir} install
install -d -m755 $pkgdir/usr/share/licenses/${pkgname}
install -m644 $srcdir/${pkgname}-${pkgver/_/-}/COPYING \
$pkgdir/usr/share/licenses/${pkgname}/LICENSE
}
|