# Maintainer: Luis Henrique # Former Maintainer: R S Ananda Murthy # Mandatory pkgname=hdf5 pkgver=1.8.5patch1 pkgrel=2lm source=("http://www.hdfgroup.org/ftp/HDF5/prev-releases/hdf5-1.8.5-patch1/src/hdf5-1.8.5-patch1.tar.gz") # Optional docs=("README.txt" "COPYING" "MANIFEST") url="http://www.hdfgroup.org/HDF5" slackdesc=\ ( #|-----handy-ruler------------------------------------------------------| "HDF5 (A library and file format for storing scientific data)" "HDF5 can store two primary objects: datasets and groups. A dataset is" "essentially a multidimensional array of data elements, and a group is" "a structure for organizing objects in an HDF5 file. Using these two" "basic objects, one can create and store almost any kind of scientific" "data structure, such as images, arrays of vectors, and structured and" "unstructured grids. You can also mix and match them in HDF5 files" "according to your needs." ) build() { cd $startdir/src/$pkgname-1.8.5-patch1 ./configure \ --prefix=/usr \ --libdir=/usr/lib${LIBDIRSUFFIX} \ --includedir=/usr/include/$pkgname \ --enable-cxx \ --enable-fortran \ --with-zlib \ --without-szlib \ --build=$arch-slackware-linux make || return 1 make install DESTDIR=$startdir/pkg || return 1 }