Mercurial > repos > fubar > jbrowse2
comparison x/conda_build.sh @ 133:cec274db51c0 draft
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse2 commit 7d28252954cae9f8db5f8a85d8f29cb2865b504b-dirty
author | fubar |
---|---|
date | Fri, 18 Oct 2024 11:57:55 +0000 |
parents | 49f3d3878413 |
children |
comparison
equal
deleted
inserted
replaced
132:1efcc387bef4 | 133:cec274db51c0 |
---|---|
1 if [ -z ${CONDA_BUILD+x} ]; then | |
2 source /opt/conda/conda-bld/jbrowse2_1726856947541/work/build_env_setup.sh | |
3 fi | |
4 #!/bin/bash | |
5 | |
6 # Place the jbrowse2 www content in the conda package | |
7 mkdir -p $PREFIX/opt/jbrowse2/ | |
8 cp -r * $PREFIX/opt/jbrowse2/ | |
9 | |
10 # Set an env var for people willing to find the jbrowse2 www content | |
11 mkdir -p $PREFIX/etc/conda/activate.d/ | |
12 echo "export JBROWSE2_SOURCE_DIR=$PREFIX/opt/jbrowse2" > $PREFIX/etc/conda/activate.d/jbrowse2-sourcedir.sh | |
13 chmod a+x $PREFIX/etc/conda/activate.d/jbrowse2-sourcedir.sh | |
14 | |
15 mkdir -p $PREFIX/etc/conda/deactivate.d/ | |
16 echo "unset JBROWSE2_SOURCE_DIR" > $PREFIX/etc/conda/deactivate.d/jbrowse2-sourcedir.sh | |
17 chmod a+x $PREFIX/etc/conda/deactivate.d/jbrowse2-sourcedir.sh | |
18 | |
19 # Install the CLI | |
20 npm install --prefix=${PREFIX} -g @jbrowse/cli@${PKG_VERSION} |