mirror of
https://github.com/ivabus/pantry
synced 2024-11-22 08:25:07 +03:00
parent
3f18331478
commit
96c2d17152
1 changed files with 9 additions and 7 deletions
|
@ -1,29 +1,31 @@
|
||||||
distributable:
|
distributable:
|
||||||
url: https://github.com/lxml/lxml/releases/download/lxml-{{version}}/lxml-{{version}}.tar.gz
|
url: https://github.com/lxml/lxml/releases/download/lxml-{{version}}/lxml-{{version}}.tar.gz
|
||||||
strip-components: 1
|
strip-components: 1
|
||||||
|
|
||||||
versions:
|
versions:
|
||||||
github: lxml/lxml
|
github: lxml/lxml
|
||||||
strip: /^lxml-/
|
strip: /^lxml-/
|
||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
python.org: ^3.10
|
python.org: ^3.10
|
||||||
gnome.org/libxml2: '*'
|
gnome.org/libxml2: ~2.11
|
||||||
gnome.org/libxslt: '*'
|
gnome.org/libxslt: ^1
|
||||||
|
|
||||||
runtime:
|
runtime:
|
||||||
env:
|
env:
|
||||||
PYTHONPATH: "{{prefix}}/lib/python{{deps.python.org.version.major}}/site-packages:$PYTHONPATH"
|
PYTHONPATH: '{{prefix}}/lib/python{{deps.python.org.version.major}}/site-packages:$PYTHONPATH'
|
||||||
|
|
||||||
build:
|
build:
|
||||||
dependencies:
|
|
||||||
linux:
|
|
||||||
llvm.org: '*'
|
|
||||||
script:
|
script:
|
||||||
- python -m pip install --prefix={{prefix}} .
|
- python -m pip install --prefix={{prefix}} .
|
||||||
- run: ln -s python{{deps.python.org.version.marketing}} python{{deps.python.org.version.major}}
|
- run: ln -s python{{deps.python.org.version.marketing}} python{{deps.python.org.version.major}}
|
||||||
working-directory: "{{prefix}}/lib"
|
working-directory: '{{prefix}}/lib'
|
||||||
env:
|
env:
|
||||||
linux:
|
linux:
|
||||||
CC: clang
|
CC: clang
|
||||||
CXX: clang++
|
CXX: clang++
|
||||||
LD: clang
|
LD: clang
|
||||||
|
|
||||||
test:
|
test:
|
||||||
script:
|
script:
|
||||||
- python -c "import lxml"
|
- python -c "import lxml"
|
||||||
|
|
Loading…
Reference in a new issue