summaryrefslogtreecommitdiffstats
path: root/hdf5/Pkgfile
diff options
context:
space:
mode:
Diffstat (limited to 'hdf5/Pkgfile')
-rw-r--r--hdf5/Pkgfile26
1 files changed, 26 insertions, 0 deletions
diff --git a/hdf5/Pkgfile b/hdf5/Pkgfile
new file mode 100644
index 000000000..ecafa11f4
--- /dev/null
+++ b/hdf5/Pkgfile
@@ -0,0 +1,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
+}