I am trying to prepare a conda build for a package and the package depends on samtools libraries. The user needs to copy the library files into the package directory for compilation. Here is the installation instruction of the package.
ln -s <path_to_samtools_dir> samtools
make OMP=no # without parallel support
I am not sure how to configure that part for conda-build.
The requirements section of my meta.yml
file
requirements:
build:
- {{ compiler('c') }}
- samtools
- htslib
- cmake
- readline
- zlib
Host:
- samtools
- htslib
run:
- samtools
- htslib
- python
- numpy >=1.16
- root
- matplotlib
- readline