I am new to creating Conda packages. Here is my problem:
I have a tool that has just one binary executable program. There is no other dependencies. I tried generating a Conda package for the same as follows:
- I made a
meta.yaml, which contains:
package:
name: XXXXX
version: 1.0
source:
path: $HOME/bin/XXXXX/
build:
script:
- chmod -R 777 $HOME/bin/XXXXX/YYY
- export PATH=$HOME/bin/XXXXX/:$PATH
about:
license: open-source
- I build the Conda package using
conda build XXXXX
Step 2 generates a file like:
/conda-bld/linux-64/XXXXX-1.0-0.tar.bz2
- When I ran
conda install --offline /conda-bld/linux-64/XXXXX-1.0-0.tar.bz2
it is showing up on conda list as
XXXXX 1.0 0 file:///$HOME/xxxxxxx/xxxxx/xxxxx/conda-bld
But when try fetching XXXXX using clicking tab nothing is appearing.
The aim of creating this package is that after Conda installation, YYY should be accessible inside the Conda environment.
Any idea how to get this working properly?