pantry/projects/jpeg.org/jpegxl/package.yml
2023-12-23 09:25:53 +00:00

59 lines
1.4 KiB
YAML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

distributable:
url: git+https://github.com/libjxl/libjxl.git
ref: v{{version}}
versions:
github: libjxl/libjxl
dependencies:
github.com/google/brotli: ^1
littlecms.com: ^2.13
google.com/highway: ^1
google.com/webp: ^1
giflib.sourceforge.io: ^5
openexr.com: ^3
libpng.org: ^1
provides:
- bin/cjxl
- bin/cjpegli
- bin/djxl
- bin/djpegli
- bin/jxlinfo
build:
dependencies:
freedesktop.org/pkg-config: ^0.29
cmake.org: ^3
gnu.org/coreutils: '*' # deps.sh needs “realpath”
git-scm.org: ^2
working-directory: build
script:
# the `SJPEG` library is obscure and we have not yet pkgd it.
# the rest we have and provide as deps.
# jpeg-turbo is a dep we provide, but for some reason around v0.9 the
# jpegxl build started requiring their vendored copy
- run: |
./deps.sh
find third_party -not -name sjpeg -and -not -name libjpeg-turbo -mindepth 1 -maxdepth 1 -type d | xargs rm -rf
working-directory: ..
- cmake ..
-DCMAKE_BUILD_TYPE=Release
-DCMAKE_INSTALL_PREFIX={{prefix}}
-DBUILD_TESTING=OFF
-DJPEGXL_ENABLE_SKCMS=OFF
-DJPEGXL_ENABLE_BENCHMARK=OFF
-DJPEGXL_VERSION={{version}}
- make --jobs {{ hw.concurrency }} install
test: |
cjxl fixture.jpeg out.jxl
cc fixture1.c -ljxl
./a.out
cc fixture2.c -ljxl_threads
./a.out