Skip to content
Snippets Groups Projects
Commit 0d967040 authored by André Anjos's avatar André Anjos :speech_balloon:
Browse files

[conda] Implements new documentation installation strategy to solve test-only...

[conda] Implements new documentation installation strategy to solve test-only conda-builds based on tarballs
parent 39bb17eb
No related branches found
No related tags found
1 merge request!23New doc strategy
......@@ -17,12 +17,10 @@ build:
- python setup.py sdist --formats=zip
{% endif %}
- python setup.py install --single-version-externally-managed --record record.txt
# installs the documentation source, readme and license to share/doc
# so it is available during test time
- install -d ${PREFIX}/share/doc/{{ name }}
- install -m 644 -D README.rst ${PREFIX}/share/doc/{{ name }}
- install -m 644 -D LICENSE ${PREFIX}/share/doc/{{ name }}
- find doc -type f -exec install -m 644 -D "{}" "${PREFIX}/share/doc/{{ name }}/{}" \;
# installs the documentation source, readme to share/doc so it is available
# during test time
- install -d "${PREFIX}/share/doc/{{ name }}"
- cp -R README.rst doc "${PREFIX}/share/doc/{{ name }}/"
requirements:
host:
......@@ -93,3 +91,4 @@ about:
license: BSD 3-Clause
summary: Tools for development and CI integration of Bob packages
license_family: BSD
license_file: ../LICENSE
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment