mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-07 22:54:11 -05:00
* Add unbuilt pixman to updater-pixman-0.46.4 * updater-pixman-0.46.4: Build Run on linux/arm/v7. * updater-pixman-0.46.4: Build Run on linux/386. * updater-pixman-0.46.4: Build Run on linux/amd64. * updater-pixman-0.46.4: Package File Update Run on linux/386 container. --------- Co-authored-by: satmandu <satmandu@users.noreply.github.com> Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com>
27 lines
912 B
Ruby
27 lines
912 B
Ruby
require 'buildsystems/meson'
|
|
|
|
class Pixman < Meson
|
|
description 'Pixman is a low-level software library for pixel manipulation, providing features such as image compositing and trapezoid rasterization.'
|
|
homepage 'https://www.pixman.org/'
|
|
version '0.46.4'
|
|
license 'MIT'
|
|
compatibility 'all'
|
|
source_url 'https://gitlab.freedesktop.org/pixman/pixman.git'
|
|
git_hashtag "pixman-#{version}"
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '07fb41f46d8780e3c641d10336e29ddee4c03c49dc330aeb4df3cfd7d6e3d75f',
|
|
armv7l: '07fb41f46d8780e3c641d10336e29ddee4c03c49dc330aeb4df3cfd7d6e3d75f',
|
|
i686: '61d75628797970d497f5daced8928b89792c7fa13feb7d3ece3b004f6608c92d',
|
|
x86_64: '04b430b613c91e18e697c6baa0a1844881dad9b74a7cb88606591582ba5e42c9'
|
|
})
|
|
|
|
depends_on 'gcc_lib' # R
|
|
depends_on 'glibc' # R
|
|
|
|
meson_options '-Dgtk=disabled \
|
|
-Dlibpng=disabled \
|
|
-Dtests=disabled'
|
|
end
|