mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
29 lines
667 B
YAML
29 lines
667 B
YAML
|
distributable:
|
||
|
url: https://github.com/randy408/libspng/archive/refs/tags/v{{version}}.tar.gz
|
||
|
strip-components: 1
|
||
|
|
||
|
versions:
|
||
|
gitlab: randy408/libspng
|
||
|
|
||
|
dependencies:
|
||
|
darwin:
|
||
|
zlib.net: '*'
|
||
|
|
||
|
build:
|
||
|
dependencies:
|
||
|
ninja-build.org: 1
|
||
|
freedesktop.org/pkg-config: '*'
|
||
|
mesonbuild.com: '*'
|
||
|
working-directory: build
|
||
|
script: |
|
||
|
meson .. --prefix={{prefix}} --libdir={{prefix}}/lib --buildtype=release
|
||
|
ninja -v
|
||
|
ninja install -v
|
||
|
|
||
|
test:
|
||
|
script: |
|
||
|
cc example.c -lspng -o example
|
||
|
actual_output="$(./example 'test.png')"
|
||
|
echo "$actual_output" > actual_output.txt
|
||
|
test "$(cat actual_output.txt)" = "$(cat expected_output.txt)"
|