mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 02:25:18 +03:00
43 lines
986 B
YAML
43 lines
986 B
YAML
distributable:
|
||
url: https://download.gnome.org/sources/libxslt/{{ version.marketing }}/libxslt-{{ version }}.tar.xz
|
||
strip-components: 1
|
||
|
||
versions:
|
||
github: GNOME/libxslt/tags
|
||
|
||
dependencies:
|
||
gnome.org/libxml2: '*'
|
||
|
||
build:
|
||
dependencies:
|
||
gnu.org/patch: '*'
|
||
script:
|
||
- patch -p1 < props/xslt-config.patch.in
|
||
|
||
- ./configure $ARGS
|
||
- make --jobs {{ hw.concurrency }}
|
||
- make install
|
||
|
||
- run: sed -i
|
||
-e 's|{{prefix}}|"$prefix"|g'
|
||
-e 's|{{deps.gnome.org/libxml2.prefix}}|""$libxml2_prefix""|g'
|
||
xslt-config
|
||
working-directory: '{{prefix}}/bin'
|
||
|
||
- run: find . -name \*.la -exec rm {} \;
|
||
working-directory: '{{prefix}}/lib'
|
||
env:
|
||
ARGS:
|
||
- --prefix={{prefix}}
|
||
- --without-python # we don’t yet know how to support this
|
||
- --without-plugins # doesn’t build and we couldn’t debug
|
||
|
||
test:
|
||
script: |
|
||
cc `xslt-config --cflags --libs` test.c
|
||
./a.out
|
||
|
||
provides:
|
||
- bin/xslt-config
|
||
- bin/xsltproc
|