mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-06 22:24:12 -05:00
* Add unbuilt vapoursynth to updater-vapoursynth-R72 * Adjust graphicsmagick build. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Update zimg, add graphicsmagick builds, add vapoursynth builds, update libtoolize function. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * updater-vim-9.1.1634 — gvim → 9.1.1634,vim → 9.1.1634,vim_runtime → 9.1.1634,xxd_standalone → 9.1.1634 (#12471) * Add unbuilt vim to updater-vim-9.1.1634 * updater-vim-9.1.1634: Build Run on linux/arm/v7. * updater-vim-9.1.1634: Build Run on linux/amd64. * updater-vim-9.1.1634: Build Run on linux/386. * updater-vim-9.1.1634: Package File Update Run on linux/386 container. * Add ignore_updater to package.rb, and let version.rb use that to ignore packages during updates. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Rebuild vim packages. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Adjust PR title arrows. Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: satmandu <satmandu@users.noreply.github.com> Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com> Co-authored-by: Satadru Pramanik <satadru@gmail.com> * lint Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: satmandu <satmandu@users.noreply.github.com> Co-authored-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: chromebrew-actions[bot] <220035932+chromebrew-actions[bot]@users.noreply.github.com> Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com>
29 lines
957 B
Ruby
29 lines
957 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.8.1-3'
|
|
license 'GPL-3'
|
|
compatibility 'all'
|
|
source_url 'https://github.com/tukaani-project/xz.git'
|
|
git_hashtag "v#{version.split('-').first}"
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '704d9231ca3a3aacf710b32049d9e96e5efcd6afc4446c2f7d73ca7efe177f2c',
|
|
armv7l: '704d9231ca3a3aacf710b32049d9e96e5efcd6afc4446c2f7d73ca7efe177f2c',
|
|
i686: '6135be59adfa169b7517a731ae532841999b26cb44acd77bb153e400c6d574fd',
|
|
x86_64: '11efc5d59ab7b1c7acdef3c0bf7f4ebb89129bddef7fd753169d6468c6b07ec7'
|
|
})
|
|
|
|
depends_on 'glibc' # R
|
|
|
|
cmake_options '-DBUILD_SHARED_LIBS=ON'
|
|
|
|
cmake_install_extras do
|
|
# Imagemagick & Graphicsmagick want a libtool file.
|
|
ConvenienceFunctions.libtoolize('lzma', 'xzutils', true)
|
|
end
|
|
end
|