From 93f9cda52e8f3e55ac6d053f0cd3ac7d7586f57f Mon Sep 17 00:00:00 2001 From: Chris Blanton Date: Fri, 5 May 2023 17:07:41 -0400 Subject: [PATCH] #224 Added basic conda build recipe and build script. "conda build ." worked on the workstations, and conda install worked on the thin client. --- build.sh | 4 ++++ meta.yaml | 22 ++++++++++++++++++++++ 2 files changed, 26 insertions(+) create mode 100644 build.sh create mode 100644 meta.yaml diff --git a/build.sh b/build.sh new file mode 100644 index 00000000..93e49ee6 --- /dev/null +++ b/build.sh @@ -0,0 +1,4 @@ +autoreconf -i +./configure --prefix=$PREFIX --disable-ocean-model-grid-generator +make -j +make install diff --git a/meta.yaml b/meta.yaml new file mode 100644 index 00000000..a4dfc742 --- /dev/null +++ b/meta.yaml @@ -0,0 +1,22 @@ +package: + name: fre-nctools + version: 2022.02.01 + +source: + path: . + +build: + number: 0 + +requirements: + build: + - libnetcdf + - netcdf-fortran + run: + +test: + commands: + +about: + license: LGPL-3.0 + summary: Tools for manipulating and creating netCDF inputs for FMS managed models