summaryrefslogtreecommitdiffstats
path: root/netcdf/Pkgfile
diff options
context:
space:
mode:
Diffstat (limited to 'netcdf/Pkgfile')
-rw-r--r--netcdf/Pkgfile24
1 files changed, 24 insertions, 0 deletions
diff --git a/netcdf/Pkgfile b/netcdf/Pkgfile
new file mode 100644
index 000000000..a67771991
--- /dev/null
+++ b/netcdf/Pkgfile
@@ -0,0 +1,24 @@
+# Description: network Common Data Form interface for array-oriented data access and corresponding library
+# URL: http://www.unidata.ucar.edu/downloads/netcdf/index.jsp
+# Maintainer: NuTyX core team
+# Packager: lesibel at free dot fr
+# Depends on:
+
+name=netcdf
+version=4.1.1
+release=1
+source=(http://www.unidata.ucar.edu/downloads/netcdf/ftp/$name-$version.tar.gz)
+
+build() {
+ cd $name-$version
+ ./configure --prefix=/usr --enable-shared
+ make
+ make check
+ install -m755 -d $PKG/usr/lib
+ install -m755 -d $PKG/usr/share/man
+ make DESTDIR=$PKG install
+
+ install -Dm644 $SRC/$name-$version/COPYRIGHT \
+ $PKG/usr/share/licenses/$name/COPYRIGHT
+ rm $PKG/usr/share/info/dir
+}