mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 15:37:56 -05:00
* Add unbuilt gimp to updater-gimp-3.2.0 * Adjust version. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Update gimp deps, add lensfun. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add gegl build. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Rebuild babl with vapi. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Rebuild gegl with vapi. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add suitesparse build, reenable vala in gimp build. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Update gexiv2 => 0.14.6 from the stable tag. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Cleanup gimp package. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Rebuild gegl. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add x86_64 binaries. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add arm binaries built with GCC 14. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * updater-gimp-3.2.0: Package File Update Run on linux/amd64 container. * updater-gimp-3.2.0: Package File Update Run on linux/arm/v7 container. * Add fallback if gitlab package id can not be identified. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Document reason for fallback. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Fix py3_twine, py3_cfgv Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add verbose pkg message to tools/build_updated_packages.rb 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] <chromebrew-actions[bot]@users.noreply.github.com>
27 lines
876 B
Ruby
27 lines
876 B
Ruby
require 'buildsystems/cmake'
|
|
|
|
class Suitesparse < CMake
|
|
description 'A suite of sparse matrix software'
|
|
homepage 'https://people.engr.tamu.edu/davis/suitesparse.html'
|
|
version '7.12.1'
|
|
license 'metapackage'
|
|
compatibility 'all'
|
|
source_url 'https://github.com/DrTimothyAldenDavis/SuiteSparse.git'
|
|
git_hashtag "v#{version}"
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '74d600ca187a132cf02c1e289ead0cbe3640eecaad64ad9bee1235f11b4006d8',
|
|
armv7l: '74d600ca187a132cf02c1e289ead0cbe3640eecaad64ad9bee1235f11b4006d8',
|
|
i686: '7bf702d27beb0d0bccc0827740150ead66e4a2ecfc06ef9e20a544bb3597610b',
|
|
x86_64: 'fdfdf549665de7b7fc194a939730154d1325052e7ebbcb0623b7c6a036db3d92'
|
|
})
|
|
|
|
depends_on 'gcc_lib' # R
|
|
depends_on 'glibc' # R
|
|
depends_on 'gmp' # R
|
|
depends_on 'lapack' => :build
|
|
depends_on 'mpfr' # R
|
|
depends_on 'openblas' # R
|
|
end
|