mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-05-01 03:00:26 -04:00
* vtk -> 9.6.1 in updater-vtk-9.6.1 * updater-vtk-9.6.1: Package File Update Run on linux/amd64 container. * updater-vtk-9.6.1: Package File Update Run on linux/arm/v7 container. --------- Co-authored-by: github-merge-queue <github-merge-queue@users.noreply.github.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>
23 lines
763 B
Ruby
23 lines
763 B
Ruby
require 'buildsystems/cmake'
|
|
|
|
class Vtk < CMake
|
|
description 'VTK is an open-source software system for image processing, 3D graphics, volume rendering and visualization.'
|
|
homepage 'https://vtk.org/'
|
|
version '9.6.1'
|
|
license 'BSD-3'
|
|
compatibility 'aarch64 armv7l x86_64'
|
|
source_url 'https://gitlab.kitware.com/vtk/vtk.git'
|
|
git_hashtag "v#{version}"
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'e0df4cf3d27adf7dcf0a9d36ceac2da27f81dfb451672ce68698b7b7b9324823',
|
|
armv7l: 'e0df4cf3d27adf7dcf0a9d36ceac2da27f81dfb451672ce68698b7b7b9324823',
|
|
x86_64: '03c2031d80010fc06e9383c3d306727fe904753c3695b30f1f8c727540fe5495'
|
|
})
|
|
|
|
depends_on 'gcc_lib' => :library
|
|
depends_on 'glibc' => :library
|
|
depends_on 'libx11' => :build
|
|
end
|