mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 07:57:59 -05:00
* Rename aws to aws_cli * Rename ffcall to libffcall * Update filecmd homepage * Update go_bootstrap homepage * Update go homepage * Update bacon homepage * Rename jsonc to json_c * Update libffi homepage * Update libgd homepage * Rename libjpeg to libjpeg_turbo * Update libpng homepage * Rename mandb to man_db * Update mongodb homepage * Rename moonbuggy to moon_buggy * Update mpc homepage * Update netcat homepage * Update nethack4 homepage * Rename pkgconfig to pkg_config * Rename postgres to postgresql * Rename proj4 to proj * Update qemacs homepage * Update readline homepage * Update scrollz homepage * Update xzutils homepage * Update weather homepage
24 lines
788 B
Ruby
24 lines
788 B
Ruby
require 'buildsystems/cmake'
|
|
|
|
class Xzutils < CMake
|
|
description 'XZ Utils is free general-purpose data compression software with a high compression ratio.'
|
|
homepage 'https://tukaani.org/xz/'
|
|
version '5.6.1'
|
|
license 'GPL-3'
|
|
compatibility 'all'
|
|
source_url 'https://github.com/tukaani-project/xz.git'
|
|
git_hashtag "v#{version}"
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'eef32693337bd3345001a1cd8d49b96940d5f9100916080a352abfe1a09de99f',
|
|
armv7l: 'eef32693337bd3345001a1cd8d49b96940d5f9100916080a352abfe1a09de99f',
|
|
i686: 'f9aaefa142d5c826e862b4a2ce627c9b5795a3fc744a58b01172416e0f1405e3',
|
|
x86_64: 'c3fed03eafd462bd132bb945ae83adda4fada304654d971f3428943556fe3c23'
|
|
})
|
|
|
|
depends_on 'glibc' # R
|
|
|
|
cmake_options '-DBUILD_SHARED_LIBS=ON'
|
|
end
|