diff --git a/projects/github.com/strukturag/libheif/package.yml b/projects/github.com/strukturag/libheif/package.yml new file mode 100644 index 00000000..a7a7a8d4 --- /dev/null +++ b/projects/github.com/strukturag/libheif/package.yml @@ -0,0 +1,54 @@ +distributable: + url: https://github.com/strukturag/libheif/releases/download/v{{version}}/libheif-{{version}}.tar.gz + strip-components: 1 + +versions: + github: strukturag/libheif + +# https://github.com/teaxyz/pantry/blob/7837a368509a7a838e53cc0759ec41a93ed14414/projects/github.com/strukturag/libde265/package.yml#L8 +platforms: + - darwin + - linux/x86-64 + +dependencies: + aomedia.googlesource.com/aom: '*' + libjpeg-turbo.org: '*' + github.com/strukturag/libde265: '*' + libpng.org: '*' + freedesktop.org/shared-mime-info: '*' + videolan.org/x265: '*' + +build: + dependencies: + tea.xyz/gx/cc: c99 + tea.xyz/gx/make: '*' + cmake.org: '*' + freedesktop.org/pkg-config: '*' + script: | + cmake -S . -B build $ARGS + cmake --build build + cmake --install build + mkdir -p {{prefix}}/pkgshare + mv ./examples/example.heic {{prefix}}/pkgshare/ + mv ./examples/example.avif {{prefix}}/pkgshare/ + mkdir -p {{prefix}}/share/mime/packages + update-mime-database {{prefix}}/share/mime + env: + ARGS: + - -DCMAKE_INSTALL_PREFIX={{prefix}} + - -DCMAKE_BUILD_TYPE=Release + - -DCMAKE_VERBOSE_MAKEFILE=ON + - -Wno-dev + - -DBUILD_TESTING=OFF + +provides: + - bin/heif-convert + - bin/heif-enc + - bin/heif-info + - bin/heif-thumbnailer + +test: + dependencies: + freedesktop.org/pkg-config: '*' + script: + pkg-config --modversion libheif | grep {{version}} \ No newline at end of file