Files
chromebrew/packages/pango.rb
chromebrew-actions[bot] 00cb6e7d2e Build: harfbuzz started at 2025-07-21-19UTC. (#12235)
* 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>
2025-07-21 19:32:19 +00:00

44 lines
1.4 KiB
Ruby

require 'buildsystems/meson'
# build order: harfbuzz => freetype => fontconfig => cairo => pango
class Pango < Meson
description 'Pango is a library for laying out and rendering of text, with an emphasis on internationalization.'
homepage 'https://pango.gnome.org/'
version '1.56.4-1'
license 'LGPL-2+ and FTL'
compatibility 'aarch64 armv7l x86_64'
source_url 'https://gitlab.gnome.org/GNOME/pango.git'
git_hashtag version.split('-').first
binary_compression 'tar.zst'
binary_sha256({
aarch64: '8f88149956e9f63b02e2a7c1703252fd2e644a05b6a6bba8435b8ee9f7bcc7bd',
armv7l: '8f88149956e9f63b02e2a7c1703252fd2e644a05b6a6bba8435b8ee9f7bcc7bd',
x86_64: 'a161560799003988efa256a9cdb4b724967228de7c17ecc515ef89b058bc55dc'
})
depends_on 'cairo' # R
depends_on 'fontconfig' # R
depends_on 'freetype' # R
depends_on 'fribidi' # R
depends_on 'gcc_lib' # R
depends_on 'glibc' # R
depends_on 'glib' # R
depends_on 'gobject_introspection' => :build # add this package to build gtk+, avoid compilation error
depends_on 'harfbuzz' # R
depends_on 'libx11' # R
depends_on 'libxdmcp' => :build
depends_on 'libxft' # R
depends_on 'libxrender' # R
depends_on 'xorg_proto' => :build
meson_options '-Dbuild-examples=false \
-Dbuild-testsuite=false \
-Dcairo=enabled \
-Ddocumentation=false \
-Dfontconfig=enabled \
-Dfreetype=enabled \
-Dintrospection=enabled \
-Dlibthai=disabled'
end