File tree 2 files changed +38
-6
lines changed
2 files changed +38
-6
lines changed Original file line number Diff line number Diff line change @@ -9,12 +9,31 @@ Enter the conda environment:
9
9
source ~ /miniconda3/bin/activate
10
10
```
11
11
12
- Get the build tools:
12
+ Get the build and upload tools:
13
13
14
14
``` bash
15
15
(base) $ conda install conda-build
16
+ (base) $ conda install anaconda-client
16
17
```
17
18
19
+ Special extra hassles for MacOS, download the SDK matching your version of MacOS
20
+ and unzip it to /opt (just like the Anaconda default):
21
+ ``` bash
22
+ # General page at: https://github.com/phracker/MacOSX-SDKs/releases
23
+ cd ~ /
24
+ wget https://github.com/phracker/MacOSX-SDKs/releases/download/11.3/MacOSX10.13.sdk.tar.xz
25
+ xz -d MacOSX10.13.sdk.tar.xz
26
+ cd /opt
27
+ sudo tar -xvf $HOME /MacOSX10.13.sdk.tar.xz
28
+ ```
29
+ Next for MacOS, setup a ` $HOME/conda_build_config.yaml ` file with the following contents.
30
+ Again, your MacOS version may vary:
31
+ ``` yaml
32
+ CONDA_BUILD_SYSROOT :
33
+ - /opt/MacOSX10.13.sdk # [osx]
34
+ ` ` `
35
+
36
+
18
37
Get this directory:
19
38
` ` ` bash
20
39
(base) $ git clone https://github.com/das-developers/das2C.git
@@ -32,7 +51,20 @@ Upload to anaconda.org
32
51
(or similar)
33
52
```
34
53
35
- Have users update:
54
+ Have users install via:
55
+ ``` bash
56
+ (base) $ conda install -c dasdevelopers das2c
57
+ ```
58
+ Or update via:
36
59
``` bash
37
- (base) $ conda update -c dasdevelopers das2C
38
- ```
60
+ (base) $ conda update -c dasdevelopers das2c
61
+ ```
62
+ And test via:
63
+ ``` bash
64
+ (base) $ das2_psd -h
65
+ ```
66
+
67
+
68
+
69
+
70
+
Original file line number Diff line number Diff line change 5
5
# Example:
6
6
# openssl sha256 das2C-2.3-pre3.tar.gz | awk '{print $2}'
7
7
8
- {% set name = "das2C " %}
8
+ {% set name = "das2c " %}
9
9
{% set conda_version = "2.3.rc3" %}
10
- {% set git_version = "2.3-pre3"}
10
+ {% set git_version = "2.3-pre3" % }
11
11
{% set sha256 = "6362189d746045b2294810f28d9319f60f1f035a3df71667a1d09677248f3e2e" %}
12
12
13
13
You can’t perform that action at this time.
0 commit comments