1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# cairo - 2D graphics library (pango / Openbox render dep)
# https://www.cairographics.org/releases/
[package]
name = "cairo"
version = "1.18.4"
release = 1
description = "2D graphics library"
url = "https://www.cairographics.org/"
license = "LGPL-2.1-or-later OR MPL-1.1"
maintainer = "Chris Tusa <chris.tusa@leafscale.com>"
arch = "x86_64"
[dependencies]
runtime = ["pixman", "freetype", "fontconfig", "libpng", "libX11", "libXext", "libXrender", "glib2"]
build = ["pixman", "freetype", "fontconfig", "libpng", "libX11", "libXext", "libXrender", "glib2"]
[[source]]
file = "cairo-1.18.4.tar.xz"
urls = ["https://www.cairographics.org/releases/cairo-1.18.4.tar.xz"]
checksum = "445ed8208a6e4823de1226a74ca319d3600e83f6369f99b14265006599c32ccb"
[build]
parallel = true
|