mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-05-01 03:00:26 -04:00
* pixman => 0.46, libxft => 2.3.9 Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add built packages for linux/386 to x_updates * Add x86_64 & armv7l binaries Signed-off-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: Satadru Pramanik <satadru@gmail.com> Co-authored-by: satmandu <satmandu@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.0'
|
|
license 'MIT'
|
|
compatibility 'all'
|
|
source_url 'https://gitlab.freedesktop.org/pixman/pixman.git'
|
|
git_hashtag "pixman-#{version}"
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '96328061e6337e4395ea4e178cc9fe201ea7713a7ca47dcc26e425c00e878f59',
|
|
armv7l: '96328061e6337e4395ea4e178cc9fe201ea7713a7ca47dcc26e425c00e878f59',
|
|
i686: '0afdfa6f061738fc4ca8594857886f7e80bcc1ccbaefcaa11ab22663aee623cd',
|
|
x86_64: '649b3673ed250ed5ef978fb795d15136f9975c8b9b961bf5b9606e3931c61f63'
|
|
})
|
|
|
|
depends_on 'gcc_lib' # R
|
|
depends_on 'glibc' # R
|
|
|
|
meson_options '-Dgtk=disabled \
|
|
-Dlibpng=disabled \
|
|
-Dtests=disabled'
|
|
end
|