blob: ecafa11f46e750adc1a28a1f9cd6fbf311c6bd6c (
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
|
# Description: General purpose library and file format for storing scientific data.
# URL: http://www.hdfgroup.org/HDF5/
# Maintainer: NuTyX core team
# Packager: piernov <piernov@piernov.org>
# Depends on:
name=hdf5
version=1.8.9
release=1
source=(http://www.hdfgroup.org/ftp/HDF5/current/src/hdf5-$version.tar.bz2)
build() {
cd $name-$version
./configure --prefix=/usr \
--enable-hl \
--enable-linux-lfs \
--enable-production \
--enable-cxx \
--disable-sharedlib-rpath \
--with-ssl \
--with-pthread \
--with-zlib \
--with-pic
make
make DESTDIR=$PKG install
}
|