package An official xmake package repository https://xrepo.xmake.io/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

46 lines
2.1 KiB

3 years ago
package("pango")
set_homepage("https://www.pango.org/")
set_description("Framework for layout and rendering of i18n text")
set_license("LGPL-2.0")
set_urls("https://gitlab.gnome.org/GNOME/pango/-/archive/$(version)/pango-$(version).tar.gz")
add_urls("https://gitlab.gnome.org/GNOME/pango.git")
add_versions("1.50.3", "4a8b0cf33d5f9ecaa9cd99dd72703d5c4c53bc58df64dd9538493bb4356ab691")
add_deps("meson", "ninja")
add_deps("fontconfig", "freetype", "harfbuzz", "fribidi", "cairo", "glib")
if is_plat("macosx") then
add_extsources("brew::pango")
add_frameworks("CoreFoundation")
elseif is_plat("linux") then
add_deps("xorgproto")
add_extsources("apt::libpango-1.0-0", "pacman::pango")
3 years ago
end
add_includedirs("include", "include/pango-1.0")
on_install("macosx", "linux", function (package)
import("package.tools.meson")
local configs = {"-Dintrospection=disabled", "-Dgtk_doc=false", "-Dfontconfig=enabled"}
table.insert(configs, "-Ddebug=" .. (package:debug() and "true" or "false"))
table.insert(configs, "-Ddefault_library=" .. (package:config("shared") and "shared" or "static"))
io.gsub("meson.build", "subdir%('tests'%)", "")
io.gsub("meson.build", "subdir%('fuzzing'%)", "")
io.gsub("meson.build", "subdir%('docs'%)", "")
io.gsub("meson.build", "subdir%('examples'%)", "")
io.gsub("meson.build", "subdir%('utils'%)", "")
io.gsub("meson.build", "subdir%('tools'%)", "")
io.replace("meson.build", "[ 'CoreFoundation', 'ApplicationServices' ]", "[ 'CoreFoundation', 'ApplicationServices', 'Foundation' ]", {plain = true})
io.replace("meson.build", "dependency('gi-docgen'", "dependency(''", {plain = true})
io.replace("meson.build", "fallback: ['gi-docgen', 'dummy_dep']", "fallback: ['dummy_dep']", {plain = true})
meson.install(package, configs, {packagedeps = {"fontconfig", "freetype", "harfbuzz", "fribidi", "cairo", "glib"}})
end)
on_test(function (package)
assert(package:has_cfuncs("pango_layout_set_text", {includes = "pango/pangocairo.h"}))
end)