forked from skw32/CoFFEE_PoissonSolver_KO_pa
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add README and document the need to install the macOS 10.9 sdk for th…
…e build to succeed
- Loading branch information
Showing
3 changed files
with
14 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,14 @@ | ||
This directory contains the recipe for building a conda package for CoFFEE. | ||
# Conda package wrapping CoFFEE project | ||
|
||
To use/test: | ||
To use -- with current working directory containing meta.yaml: | ||
|
||
First create a conda build environment with the tools needed to run the `conda-build` command | ||
|
||
1. `conda create -n conda-build-env python=3.6` | ||
1. `conda create -n python=3 conda-build-env conda-build anaconda-client conda-verify` | ||
2. `conda activate conda-build-env` | ||
3. `conda install conda-build conda-verify anaconda-client` | ||
3. `conda-build . -c conda-forge` | ||
|
||
## Build Environment setup requirements (macOS) | ||
|
||
Then run `conda-build .` from this directory (NOTE: this does not modify your `conda-build-env` -- you can reuse this environment to test conda package build process and don't have to recreate it everytime) | ||
Ensure install of the [macOS 10.9 sdk](https://github.com/phracker/MacOSX-SDKs/releases). | ||
|
||
1. `conda-build .` | ||
(you can use this script but check what it does first to confirm you are happy with the modifications it will perform) | ||
bash -x macos_ci_setup.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters