mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-08 23:18:10 -05:00
* Libjxl => 0.11.1 Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Update py3_cryptography Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add built packages for linux/386 to jxl * Update highway Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add built packages for linux/386 to jxl * Add tests to highway Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add built packages for linux/386 to jxl * Add built packages for linux/amd64 to jxl * Add built packages for linux/arm/v7 to jxl --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: satmandu <satmandu@users.noreply.github.com>
55 lines
1.8 KiB
Ruby
55 lines
1.8 KiB
Ruby
# Adapted from Arch Linux libjxl PKGBUILD at:
|
|
# https://github.com/archlinux/svntogit-community/raw/packages/libjxl/trunk/PKGBUILD
|
|
|
|
require 'buildsystems/cmake'
|
|
|
|
class Libjxl < CMake
|
|
description 'JPEG XL image format reference implementation'
|
|
homepage 'https://jpeg.org/jpegxl/'
|
|
version '0.11.1'
|
|
license 'BSD'
|
|
compatibility 'aarch64 armv7l x86_64'
|
|
source_url 'https://github.com/libjxl/libjxl.git'
|
|
git_hashtag "v#{version}"
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'd856c7326760e3f5f5f93ddaf40ca930651cf572ca8312ccb9daa99231d3e79c',
|
|
armv7l: 'd856c7326760e3f5f5f93ddaf40ca930651cf572ca8312ccb9daa99231d3e79c',
|
|
x86_64: '54ed447ceadf7c7750dd599b27ee1e97b182ca7d301d959c464091867b3c7439'
|
|
})
|
|
|
|
depends_on 'py3_asciidoc' => :build
|
|
depends_on 'at_spi2_core' => :build
|
|
depends_on 'babl' => :build
|
|
depends_on 'brotli' # R
|
|
depends_on 'freetype' => :build
|
|
depends_on 'gcc_lib' # R
|
|
depends_on 'gdk_pixbuf' # R
|
|
depends_on 'gegl' => :build
|
|
depends_on 'giflib' # R
|
|
depends_on 'glibc' # R
|
|
depends_on 'glib' # R
|
|
depends_on 'harfbuzz' => :build
|
|
depends_on 'highway' # R
|
|
depends_on 'json_glib' => :build
|
|
depends_on 'libjpeg_turbo' # R
|
|
depends_on 'libpng' # R
|
|
depends_on 'openexr' # R
|
|
depends_on 'pango' => :build
|
|
depends_on 'xdg_utils' => :build
|
|
depends_on 'zlib' # R
|
|
|
|
no_env_options
|
|
|
|
cmake_options "-DJPEGXL_ENABLE_BENCHMARK:BOOL='false' \
|
|
-DJPEGXL_ENABLE_EXAMPLES:BOOL='false' \
|
|
-DJPEGXL_ENABLE_FUZZERS:BOOL='false' \
|
|
-DJPEGXL_ENABLE_PLUGINS:BOOL='true' \
|
|
-DJPEGXL_ENABLE_VIEWERS:BOOL='false' \
|
|
-DJPEGXL_FORCE_SYSTEM_BROTLI:BOOL='true' \
|
|
-DJPEGXL_FORCE_SYSTEM_GTEST:BOOL='false' \
|
|
-DJPEGXL_FORCE_SYSTEM_HWY:BOOL='true' \
|
|
-DJPEGXL_BUNDLE_LIBPNG:BOOL='NO'"
|
|
end
|