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.
60 lines
2.7 KiB
60 lines
2.7 KiB
package("cairo") |
|
|
|
set_homepage("https://cairographics.org/") |
|
set_description("Vector graphics library with cross-device output support.") |
|
|
|
set_urls("https://cairographics.org/releases/cairo-$(version).tar.xz") |
|
add_versions("1.16.0", "5e7b29b3f113ef870d1e3ecf8adf21f923396401604bda16d44be45e66052331") |
|
|
|
if is_plat("windows") then |
|
add_deps("make", "libpng", "pixman", "zlib") |
|
else |
|
add_deps("pkg-config", "fontconfig", "freetype", "libpng", "pixman") |
|
end |
|
|
|
if is_plat("macosx") then |
|
add_frameworks("CoreGraphics", "CoreFoundation", "Foundation") |
|
elseif is_plat("windows") then |
|
add_defines("CAIRO_WIN32_STATIC_BUILD=1") |
|
add_syslinks("gdi32", "msimg32", "user32") |
|
else |
|
add_syslinks("pthread") |
|
end |
|
|
|
on_install("windows", function (package) |
|
io.gsub("build/Makefile.win32.common", "%-MD", "-" .. package:config("vs_runtime")) |
|
io.gsub("build/Makefile.win32.common", "mkdir %-p", "xmake l mkdir") |
|
io.gsub("build/Makefile.win32.common", "dirname", "xmake l path.directory") |
|
io.gsub("build/Makefile.win32.common", "link", "echo") |
|
io.gsub("src/Makefile.win32", "%$%(PIXMAN_LIBS%)", "") |
|
local pixman = package:dep("pixman") |
|
if pixman then |
|
io.gsub("build/Makefile.win32.common", "%$%(PIXMAN_CFLAGS%)", "-I\"" .. pixman:installdir("include/pixman-1") .. "\"") |
|
end |
|
local libpng = package:dep("libpng") |
|
if libpng then |
|
io.gsub("build/Makefile.win32.common", "%$%(LIBPNG_CFLAGS%)", "-I\"" .. libpng:installdir("include") .. "\"") |
|
end |
|
local zlib = package:dep("zlib") |
|
if zlib then |
|
io.gsub("build/Makefile.win32.common", "%$%(ZLIB_CFLAGS%)", "-I\"" .. zlib:installdir("include") .. "\"") |
|
end |
|
os.vrunv("make", {"-f", "Makefile.win32", "CFG=" .. (package:debug() and "debug" or "release")}) |
|
os.cp("src/*.h", package:installdir("include/cairo")) |
|
os.cp("src/**.lib", package:installdir("lib")) |
|
end) |
|
|
|
on_install("macosx", "linux", function (package) |
|
local configs = {"--disable-dependency-tracking", "--enable-shared=no"} |
|
table.insert(configs, "--enable-gobject=no") |
|
table.insert(configs, "--enable-svg=yes") |
|
table.insert(configs, "--enable-tee=yes") |
|
table.insert(configs, "--enable-quartz=no") |
|
table.insert(configs, "--enable-xlib=" .. (is_plat("macosx") and "no" or "yes")) |
|
table.insert(configs, "--enable-xlib-xrender=" .. (is_plat("macosx") and "no" or "yes")) |
|
import("package.tools.autoconf").install(package, configs) |
|
end) |
|
|
|
on_test(function (package) |
|
assert(package:has_cfuncs("cairo_create", {includes = "cairo/cairo.h"})) |
|
end)
|
|
|