diff options
Diffstat (limited to 'base/netcdf/Pkgfile')
-rw-r--r-- | base/netcdf/Pkgfile | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/base/netcdf/Pkgfile b/base/netcdf/Pkgfile new file mode 100644 index 000000000..20f4edd5e --- /dev/null +++ b/base/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.0.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 +} |