# Maintainer: Ronald van Haren # Maintainer: Bruno Pagani # Contributor: damir # ALARM: Kevin Mihelich # - disable CDFS for 32-bit ARM pkgname=netcdf pkgver=4.7.3 pkgrel=1 pkgdesc="network Common Data Form interface for array-oriented data access and corresponding library" arch=(x86_64) 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=(https://github.com/Unidata/netcdf-c/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz) sha256sums=('05d064a2d55147b83feff3747bea13deb77bef390cb562df4f9f9f1ce147840d') prepare() { mkdir -p build } build() { cd build [[ $CARCH != "aarch64" ]] && CDFS="OFF" || CDFS="ON" cmake ../${pkgname}-c-${pkgver} \ -DCMAKE_INSTALL_PREFIX=/usr \ -DCMAKE_INSTALL_LIBDIR=lib \ -DCMAKE_BUILD_TYPE=Release \ -DENABLE_CDF5=${CDFS} \ -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 make test } package() { cd build make DESTDIR="${pkgdir}" install cd "${srcdir}"/${pkgname}-c-${pkgver} install -Dm644 COPYRIGHT -t "${pkgdir}"/usr/share/licenses/${pkgname}/ }