mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 15:37:56 -05:00
* harfbuzz => 11.3.2 Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Build on linux/amd64 to branch harfbuzz. * Updating package files for linux/386 to branch harfbuzz. * Updating package files for linux/arm/v7 to branch harfbuzz. * freetype rebuild Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Updating package files for linux/amd64 to branch harfbuzz. * rebuild fontconfig Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Updating package files for linux/amd64 to branch harfbuzz. * cairo rebuild Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Updating package files for linux/amd64 to branch harfbuzz. * Rebuild pango Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Updating package files for linux/amd64 to branch harfbuzz. --------- 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>
40 lines
1.2 KiB
Ruby
40 lines
1.2 KiB
Ruby
require 'buildsystems/meson'
|
|
# build order: harfbuzz => freetype => fontconfig => cairo => pango
|
|
|
|
class Cairo < Meson
|
|
description 'Cairo is a 2D graphics library with support for multiple output devices.'
|
|
homepage 'https://www.cairographics.org'
|
|
version '1.18.4-1'
|
|
license 'LGPL-2.1 or MPL-1.1'
|
|
compatibility 'aarch64 armv7l x86_64'
|
|
source_url 'https://gitlab.freedesktop.org/cairo/cairo.git'
|
|
git_hashtag version.split('-').first
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '973f04fbac5a180e63be43fc5483ed8238304e2dd3b87a971e441138bc4a7dd0',
|
|
armv7l: '973f04fbac5a180e63be43fc5483ed8238304e2dd3b87a971e441138bc4a7dd0',
|
|
x86_64: '1bb2ecf6c299d59c546a6adfdcaba1a4ad6047e525e2e55b0447094d09aebec8'
|
|
})
|
|
|
|
depends_on 'fontconfig' # R
|
|
depends_on 'freetype' # R
|
|
depends_on 'gcc_lib' # R
|
|
depends_on 'glibc' # R
|
|
depends_on 'glib' # R
|
|
depends_on 'harfbuzz' # R
|
|
depends_on 'libpng' # R
|
|
depends_on 'libx11' # R
|
|
depends_on 'libxcb' # R
|
|
depends_on 'libxrender' # R
|
|
depends_on 'lzo' # R
|
|
depends_on 'mesa' => :build
|
|
depends_on 'pixman' # R
|
|
depends_on 'zlib' # R
|
|
|
|
conflicts_ok # because this overwrites the limited cairo from harfbuzz
|
|
|
|
meson_options '-Dxlib-xcb=enabled \
|
|
-Dtests=disabled'
|
|
end
|