summaryrefslogtreecommitdiff
path: root/manualPorts/szip/Pkgfile
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2018-05-27 10:13:52 +0200
committerErich Eckner <git@eckner.net>2018-05-27 10:13:52 +0200
commit14a8f5d3c7889f2046a008b1b1dc29f485ebb359 (patch)
tree644ebb60f7155dd5c139d233857684fbcd8546e6 /manualPorts/szip/Pkgfile
downloadcrux-ports-14a8f5d3c7889f2046a008b1b1dc29f485ebb359.tar.xz
initial commit
Diffstat (limited to 'manualPorts/szip/Pkgfile')
-rw-r--r--manualPorts/szip/Pkgfile24
1 files changed, 24 insertions, 0 deletions
diff --git a/manualPorts/szip/Pkgfile b/manualPorts/szip/Pkgfile
new file mode 100644
index 0000000..d7584de
--- /dev/null
+++ b/manualPorts/szip/Pkgfile
@@ -0,0 +1,24 @@
+# Description: Compression software, providing lossless compression of scientific data (HDF4, HDF5).
+# URL: http://hdf.ncsa.uiuc.edu/doc_resource/SZIP/
+# Maintainer: Erich Eckner, crux at eckner dot net
+# Contributor: Danny Rawlins, crux at romster dot me
+# Packager: Younes Hafri, ycrux at club-internet dot fr
+# Depends on:
+
+name=szip
+version=2.1.1
+release=1
+source=(ftp://ftp.hdfgroup.org/lib-external/szip/$version/src/szip-$version.tar.gz)
+
+build() {
+ cd szip-$version
+ sed -i -e '/^SUBDIRS = /s/src test examples/src/' Makefile.in
+
+ ./configure \
+ --prefix=/usr \
+ --disable-static
+
+ make
+ make prefix=$PKG/usr install
+}
+