mirror of
https://github.com/ivabus/pantry
synced 2024-11-13 03:55:18 +03:00
22 lines
781 B
YAML
22 lines
781 B
YAML
|
distributable:
|
||
|
url: https://github.com/cython/cython/archive/{{version}}.tar.gz
|
||
|
strip-components: 1
|
||
|
versions:
|
||
|
github: cython/cython
|
||
|
dependencies:
|
||
|
python.org: ^3.11
|
||
|
tea.xyz/gx/cc: c99
|
||
|
runtime:
|
||
|
env:
|
||
|
PYTHONPATH: "{{prefix}}/lib/python{{deps.python.org.version.major}}/site-packages"
|
||
|
build:
|
||
|
script:
|
||
|
- python -m pip install --prefix={{prefix}}/libexec .
|
||
|
- run: |
|
||
|
ln -s ../libexec/lib/python{{deps.python.org.version.marketing}} python{{deps.python.org.version.marketing}}
|
||
|
ln -s ../libexec/lib/python{{deps.python.org.version.marketing}} python{{deps.python.org.version.major}}
|
||
|
working-directory: "{{prefix}}/lib"
|
||
|
test:
|
||
|
script:
|
||
|
- python setup.py build_ext --inplace
|
||
|
- python -c "import package_manager" | grep "You are using tea"
|