mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 07:57:59 -05:00
* rebuild bison,sed; update cpio * add strace * expand comment * add gpgme, putty * update tre * update elinks * deprecate js91 * rebuild anagram, update libgudev & upower * rebuild openjpeg * update libdeflate * update openexr * remove ilmbase deps (replaced by openexr) * deprecate ilmbase * rebuild gegl with newer openexr * update R * libjxl rebuild * graphviz => 9 * update gdal * imagemagick7 update * gimp rebuild * suggested changes * Add pre_ options to cmake and meson buildsystems * suggested changes * reversion gegl * update gdal url * redo versions * update py3_numpy * update openblas, mold * remove 'pre_' empty? checks in buildsystems * rebuild rust to fix binary issues on x86_64 * fixup missing rust completions
27 lines
1.3 KiB
Ruby
27 lines
1.3 KiB
Ruby
require 'buildsystems/cmake'
|
|
|
|
class Libdeflate < CMake
|
|
description 'Heavily optimized library for DEFLATE compression and decompression'
|
|
homepage 'https://github.com/ebiggers/libdeflate/'
|
|
version '1.19'
|
|
license 'MIT'
|
|
compatibility 'all'
|
|
source_url 'https://github.com/ebiggers/libdeflate.git'
|
|
git_hashtag "v#{version}"
|
|
|
|
binary_url({
|
|
aarch64: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/libdeflate/1.19_armv7l/libdeflate-1.19-chromeos-armv7l.tar.zst',
|
|
armv7l: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/libdeflate/1.19_armv7l/libdeflate-1.19-chromeos-armv7l.tar.zst',
|
|
i686: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/libdeflate/1.19_i686/libdeflate-1.19-chromeos-i686.tar.zst',
|
|
x86_64: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/libdeflate/1.19_x86_64/libdeflate-1.19-chromeos-x86_64.tar.zst'
|
|
})
|
|
binary_sha256({
|
|
aarch64: '9c2808b40e8257439943369bf44153758e706f09446b9b92de42391ebb52dd00',
|
|
armv7l: '9c2808b40e8257439943369bf44153758e706f09446b9b92de42391ebb52dd00',
|
|
i686: '0c5306cc7692ae9f5061a5a89e13da1bb1ece3240366238613301e69003c7236',
|
|
x86_64: 'b339d1e1e71fcf0aed63e4ed3cd52a5b595c4401829e471f48b83236d895e378'
|
|
})
|
|
|
|
depends_on 'glibc' # R
|
|
end
|