mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 15:37:56 -05:00
* libart 2.3.20 -> 2.3.21 * libart: Package File Update Run on linux/386 container. * libart: Package File Update Run on linux/amd64 container. * libart: Package File Update Run on linux/arm/v7 container. --------- Co-authored-by: Zopolis4 <creatorsmithmdt@gmail.com> Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com>
23 lines
805 B
Ruby
23 lines
805 B
Ruby
require 'buildsystems/autotools'
|
|
|
|
class Libart < Autotools
|
|
description 'Libart is a library for high-performance 2D graphics.'
|
|
homepage 'https://www.levien.com/libart/'
|
|
version '2.3.21'
|
|
license 'GPL-3 and LGPL-3'
|
|
compatibility 'all'
|
|
source_url 'https://gitlab.gnome.org/Archive/libart_lgpl.git'
|
|
git_hashtag "LIBART_LGPL_#{version.tr('.', '_')}"
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '2d5d790f92263ff6d4ab4810eaf626d0f21b87b5d89c5e660a83a3c2fda0fe42',
|
|
armv7l: '2d5d790f92263ff6d4ab4810eaf626d0f21b87b5d89c5e660a83a3c2fda0fe42',
|
|
i686: 'e23c5f1dcc99a849409ad7891d2d8f308ab2a99c007fb7bebeb1486a809825df',
|
|
x86_64: '099330b9d00e067422fed9864539578563e1b9688922a31d543775e7e22cd7a2'
|
|
})
|
|
|
|
depends_on 'glibc' # R
|
|
depends_on 'gnome_common' => :build
|
|
end
|