mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 02:25:18 +03:00
e54a43db8f
remove *.la
21 lines
521 B
YAML
21 lines
521 B
YAML
distributable:
|
|
url: https://github.com/libexpat/libexpat/releases/download/R_{{ version.major }}_{{ version.minor }}_{{ version.patch }}/expat-{{ version }}.tar.xz
|
|
strip-components: 1
|
|
|
|
versions:
|
|
github: libexpat/libexpat/releases
|
|
|
|
build:
|
|
- ./configure --prefix={{ prefix }}
|
|
- make --jobs {{ hw.concurrency }} install
|
|
- run: rm *.la
|
|
working-directory: ${{ prefix }}/lib
|
|
|
|
test:
|
|
- cc test.c -lexpat -o test
|
|
- OUTPUT="$(./test)"
|
|
- test "$OUTPUT" = "tag:str|data:Hello, world!|"
|
|
|
|
provides:
|
|
- bin/xmlwf
|