mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
6bd1cee2f3
closes #4113
34 lines
724 B
YAML
34 lines
724 B
YAML
distributable:
|
|
url: https://github.com/pygments/pygments/archive/refs/tags/{{version}}.tar.gz
|
|
strip-components: 1
|
|
|
|
versions:
|
|
github: pygments/pygments/tags
|
|
|
|
dependencies:
|
|
python.org: ~3.11
|
|
|
|
build:
|
|
script:
|
|
- python-venv.sh {{prefix}}/bin/pygmentize
|
|
# Rename Pygments to pygments because python
|
|
# and macOS can't agree on case sensitivity.
|
|
- run: |
|
|
if [ -d Pygments ]; then
|
|
mv Pygments foo
|
|
mv foo pygments
|
|
fi
|
|
working-directory: ${{prefix}}/venv/lib/python3.11/site-packages
|
|
if: darwin
|
|
|
|
provides:
|
|
- bin/pygmentize
|
|
|
|
test:
|
|
fixture: |
|
|
import os
|
|
print(os.getcwd())
|
|
script: |
|
|
mv $FIXTURE test.py
|
|
pygmentize -f html -o test.html test.py
|