1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
{
"name": "gdk-pixbuf",
"version": "2.42.12",
"port-version": 4,
"description": "Image loading library.",
"homepage": "https://gitlab.gnome.org/GNOME/gdk-pixbuf",
"license": "LGPL-2.1-or-later",
"supports": "!xbox",
"dependencies": [
{
"name": "gettext",
"host": true,
"default-features": false,
"features": [
"tools"
]
},
"gettext-libintl",
"glib",
{
"name": "glib",
"host": true
},
{
"name": "vcpkg-tool-meson",
"host": true
}
],
"default-features": [
"jpeg",
"png",
"tiff"
],
"features": {
"introspection": {
"description": "Build with introspection",
"supports": "!static",
"dependencies": [
"gobject-introspection"
]
},
"jpeg": {
"description": "Enable JPEG loader (requires libjpeg)",
"dependencies": [
"libjpeg-turbo"
]
},
"others": {
"description": "Enable other loaders, which are weakly maintained (ani, bmp, icns, ico, pnm, qtif, tga, xbm, xpm)"
},
"png": {
"description": "Enable PNG loader (requires libpng)",
"dependencies": [
"libpng"
]
},
"tiff": {
"description": "Enable TIFF loader (requires libtiff)",
"dependencies": [
{
"name": "tiff",
"default-features": false
}
]
}
}
}
|