[arch-commits] Commit in netcdf/repos (2 files)
Bruno Pagani
archange at gemini.archlinux.org
Wed May 18 21:43:19 UTC 2022
Date: Wednesday, May 18, 2022 @ 21:43:19
Author: archange
Revision: 1209159
archrelease: copy trunk to community-staging-x86_64
Added:
netcdf/repos/community-staging-x86_64/
netcdf/repos/community-staging-x86_64/PKGBUILD
(from rev 1209158, netcdf/trunk/PKGBUILD)
----------+
PKGBUILD | 45 +++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 45 insertions(+)
Copied: netcdf/repos/community-staging-x86_64/PKGBUILD (from rev 1209158, netcdf/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2022-05-18 21:43:19 UTC (rev 1209159)
@@ -0,0 +1,45 @@
+# Maintainer: Ronald van Haren <ronald.archlinux.org>
+# Maintainer: Bruno Pagani <archange at archlinux.org>
+# Contributor: damir <damir at archlinux.org>
+
+pkgname=netcdf
+pkgver=4.8.1
+pkgrel=3
+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)
+checkdepends=(unzip)
+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=('bc018cc30d5da402622bf76462480664c6668b55eb16ba205a0dfb8647161dd0')
+
+build() {
+ # Disabling remote tests because of https://github.com/Unidata/netcdf-c/issues/2188
+ cmake -B build -S ${pkgname}-c-${pkgver} \
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ -DCMAKE_INSTALL_LIBDIR=lib \
+ -DCMAKE_BUILD_TYPE=Release \
+ -DENABLE_BYTERANGE=ON \
+ -DENABLE_CDF5=ON \
+ -DENABLE_DAP_LONG_TESTS=OFF \
+ -DENABLE_DAP_REMOTE_TESTS=OFF \
+ -DENABLE_EXAMPLE_TESTS=ON \
+ -DENABLE_EXTRA_TESTS=ON \
+ -DENABLE_FILTER_TESTING=ON \
+ -DENABLE_LARGE_FILE_TESTS=ON \
+ -DENABLE_UNIT_TESTS=ON
+ make -C build
+}
+
+check() {
+ make -C build test
+}
+
+package() {
+ make -C build DESTDIR="${pkgdir}" install
+ install -Dm644 ${pkgname}-c-${pkgver}/COPYRIGHT -t "${pkgdir}"/usr/share/licenses/${pkgname}/
+}
More information about the arch-commits
mailing list