mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-07 22:54:11 -05:00
* xxhash => 0.8.3 Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add built packages for linux/386 to xxhash * Add built packages for linux/amd64 to xxhash * Add built packages for linux/arm/v7 to xxhash --------- 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>
24 lines
807 B
Ruby
24 lines
807 B
Ruby
require 'buildsystems/cmake'
|
|
|
|
class Xxhash < CMake
|
|
description 'xxHash is an extremely fast non-cryptographic hash algorithm, working at speeds close to RAM limits.'
|
|
homepage 'https://xxhash.com/'
|
|
version '0.8.3'
|
|
license 'BSD-2 and GPL-2+'
|
|
compatibility 'all'
|
|
source_url 'https://github.com/Cyan4973/xxHash.git'
|
|
git_hashtag "v#{version}"
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '917d26814154f26d83318610602977ff1e8e21fe2f054b5b30fc4db2a66ca5c4',
|
|
armv7l: '917d26814154f26d83318610602977ff1e8e21fe2f054b5b30fc4db2a66ca5c4',
|
|
i686: 'aa0cf401c897bbc840c9ff70e2db304370ce5701a2d9a72c5555923531c696ad',
|
|
x86_64: '496635d53101cadaa23d7ca7467525a2762c755cbdef99bc9721fb17dd2ba856'
|
|
})
|
|
|
|
depends_on 'glibc' # R
|
|
|
|
cmake_build_relative_dir 'cmake_unofficial'
|
|
end
|