Skip to content

Commit

Permalink
GUIDELINES: typos and clarification
Browse files Browse the repository at this point in the history
  • Loading branch information
daler committed Jun 17, 2016
1 parent 906f855 commit b40295d
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions GUIDELINES.md
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,8 @@ Examples of this can be found in [bowtie2](recipes/bowtie2),

If a package depends on zlib, then it will most likely also depend on `gcc` (on
Linux) and `llvm` (on OSX). The `meta.yaml` requirements section should
therefore at least have the following:
therefore at least have the following for a recipe that supports both Linux and
OSX:


```yaml
Expand All @@ -280,7 +281,7 @@ requirements:
```

When building the package, you may get an error saying that zlib.h can't be
found -- despite having zlib listed in the dependencies. This is becuase the
found -- despite having zlib listed in the dependencies. The reason is that the
location of `zlib` often has to be specified in the `build.sh` script, which
can be done like this:

Expand All @@ -296,4 +297,6 @@ export CPATH=${PREFIX}/include
```

Sometimes Makefiles may specify these locations, in which case they need to be
edited. See the [samtools](recipes/samtools) recipe for an example of this.
edited. See the [samtools](recipes/samtools) recipe for an example of this. It
may take some tinkering to get the recipe to build; if it doesn't seem to work
then please submit an issue.

0 comments on commit b40295d

Please sign in to comment.