pantry/projects/zlib.net/package.yml
Jacob Heider 15d6dc7315 fix(zlib)
llvm17 breaks shlib support. this fixes that.
2023-12-21 15:37:41 -05:00

26 lines
534 B
YAML

distributable:
url: https://zlib.net/zlib-{{version.raw}}.tar.gz
strip-components: 1
versions:
github: madler/zlib/tags
build:
script: |
./configure --prefix="{{prefix}}"
make --jobs {{ hw.concurrency }} install
env:
linux:
CFLAGS:
- -fPIC
# undefined symbol errors in newer llvms prevent building shared libs
- -Wl,--undefined-version
test:
script: |
cc test.c -lz
OUT=$(echo "$INPUT" | ./a.out | ./a.out -d)
test "$OUT" = "$INPUT"
env:
INPUT: Hello, World!