mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-06 22:24:12 -05:00
* Add unbuilt highway to updater-highway-1.3.0 * updater-highway-1.3.0: Build Run on linux/arm/v7. * updater-highway-1.3.0: Build Run on linux/386. * updater-highway-1.3.0: Build Run on linux/amd64. * updater-highway-1.3.0: Package File Update Run on linux/386 container. * updater-highway-1.3.0: Build Run on linux/arm/v7. * updater-highway-1.3.0: Build Run on linux/386. * updater-highway-1.3.0: Build Run on linux/amd64. * updater-highway-1.3.0: Package File Update Run on linux/386 container. --------- Co-authored-by: satmandu <satmandu@users.noreply.github.com> Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@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.3.0'
|
|
license 'Apache'
|
|
compatibility 'all'
|
|
source_url 'https://github.com/google/highway.git'
|
|
git_hashtag version
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'cf2f510bb35f5e84766041262e516b4af07143e5251018ca477a4b8e3c07e2d0',
|
|
armv7l: 'cf2f510bb35f5e84766041262e516b4af07143e5251018ca477a4b8e3c07e2d0',
|
|
i686: '2fd63b9abfd4b729dd9d88d800d409f71407a89a4aca68109ec3dc873903b91f',
|
|
x86_64: 'cde6053aa43220780269a00920e555d1665b3dd72b724877ba58191bf4799933'
|
|
})
|
|
|
|
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
|