20 lines
535 B
Python
20 lines
535 B
Python
version = "0.46.0"
|
|
revision = 1
|
|
description = "Low-level pixel manipulation library"
|
|
license = "MIT"
|
|
url = "https://www.pixman.org/"
|
|
source = tarball(
|
|
url=f"https://www.x.org/archive/individual/lib/pixman-{version}.tar.xz",
|
|
sha256="d2eab57e1ce79de991f8ceb3fcd726a6978b970382c8ac8c8f112b61ceaa9167",
|
|
)
|
|
host_deps = ["binutils", "gcc", "pkgconf"]
|
|
deps = [profile["libc"], "libpng"]
|
|
|
|
configure, build, install = meson(
|
|
configure_args=[
|
|
"-Dtests=disabled",
|
|
"-Ddemos=disabled",
|
|
"-Dgtk=disabled",
|
|
],
|
|
)
|