mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 07:57:59 -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>
30 lines
1008 B
Ruby
30 lines
1008 B
Ruby
# Adapted from Arch Linux highway PKGBUILD at:
|
|
# https://github.com/archlinux/svntogit-community/raw/packages/highway/trunk/PKGBUILD
|
|
|
|
require 'buildsystems/cmake'
|
|
|
|
class Highway < CMake
|
|
description 'A C++ library for SIMD Single Instruction, Multiple Data'
|
|
homepage 'https://github.com/google/highway/'
|
|
version '1.2.0'
|
|
license 'Apache'
|
|
compatibility 'all'
|
|
source_url 'https://github.com/google/highway.git'
|
|
git_hashtag version
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '0401ecfa0d9dd2f3e323ae9b3f248ed1188b8d38cc3627cdac850498ca4d2633',
|
|
armv7l: '0401ecfa0d9dd2f3e323ae9b3f248ed1188b8d38cc3627cdac850498ca4d2633',
|
|
i686: '45b041fb1f9f636dee1bb76bb111cc3fbea307f52c6b7080cfc1cd433ba526f3',
|
|
x86_64: 'db88247a206e8c49bffb25977385cebbc1648fb25c3ce360e353a323f1125188'
|
|
})
|
|
|
|
depends_on 'gcc_lib' # R
|
|
depends_on 'glibc' # R
|
|
|
|
cmake_options "-DBUILD_SHARED_LIBS:BOOL='ON' \
|
|
-DHWY_ENABLE_TESTS:BOOL='ON' \
|
|
-DHWY_SYSTEM_GTEST:BOOL='OFF'"
|
|
end
|