Skip to content

Commit

Permalink
* add netcdf
Browse files Browse the repository at this point in the history
  • Loading branch information
kth5 committed May 6, 2019
1 parent c265fef commit 4f8ea91
Showing 1 changed file with 52 additions and 0 deletions.
52 changes: 52 additions & 0 deletions netcdf/PKGBUILD
@@ -0,0 +1,52 @@
# POWER Maintainer: Alexander Baldeck <alex.bldck@gmail.com>
# Maintainer: Ronald van Haren <ronald.archlinux.org>
# Maintainer: Bruno Pagani (a.k.a. ArchangeGabriel) <archange@archlinux.org>
# Contributor: damir <damir@archlinux.org>

pkgname=netcdf
pkgver=4.6.3
pkgrel=1
pkgdesc="network Common Data Form interface for array-oriented data access and corresponding library"
arch=(x86_64 powerpc64le)
url="https://www.unidata.ucar.edu/software/netcdf/"
depends=('hdf5' 'curl')
makedepends=('cmake')
optdepends=('netcdf-fortran: fortran bindings' 'netcdf-cxx: c++ bindings')
options=('!makeflags')
license=('custom')
source=(${pkgname}-${pkgver}.tar.gz::"https://github.com/Unidata/netcdf-c/archive/v${pkgver}.tar.gz")
sha256sums=('734a629cdaed907201084d003cfa091806d6080eeffbd4204e7c7f73ff9d3564')

prepare() {
mkdir -p build
}

build() {
cd build
cmake ../${pkgname}-c-${pkgver} \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=lib \
-DCMAKE_BUILD_TYPE=Release \
-DENABLE_CDF5=ON \
-DENABLE_DAP_LONG_TESTS=ON \
-DENABLE_EXAMPLE_TESTS=ON \
-DENABLE_EXTRA_TESTS=ON \
-DENABLE_FAILING_TESTS=ON \
-DENABLE_FILTER_TESTING=ON \
-DENABLE_LARGE_FILE_TESTS=ON
make
}

check() {
cd build
# One test failure https://github.com/Unidata/netcdf-c/issues/808
make test || warning "Test failure"
}

package() {
cd build
make DESTDIR="${pkgdir}" install

cd "${srcdir}"/${pkgname}-c-${pkgver}
install -Dm644 COPYRIGHT -t "${pkgdir}"/usr/share/licenses/${pkgname}/
}

0 comments on commit 4f8ea91

Please sign in to comment.