-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcairo-dev-common.autopkg
81 lines (68 loc) · 1.62 KB
/
cairo-dev-common.autopkg
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
@import "version.inc";
@import "compat.inc";
@import "outercurve.inc";
@import "common.inc";
package {
name: "cairo-dev-common";
version: "${package-version}";
arch : "any";
display-name: "Cairo Graphics Library-Dev-Common";
location: "http://coapp.org/repository/${OutputFilename}";
feed: "http://coapp.org/repository/packages.atom.xml";
publisher: "CoApp Project";
}
license[MPL11] {
license: @"..\COPYING-MPL-1.1";
license-url: "http://www.mozilla.org/MPL/1.1/";
license-type: "MPL";
}
license[LGPL21] {
license: @"..\COPYING-LGPL-2.1";
license-url: "http://www.gnu.org/licenses/lgpl-2.1.html";
license-type: "LGPL";
}
metadata {
summary: "Cairo Graphics Library";
description: @"Cairo is a vector graphics library that can output to many devices and use hardware acceleration in some cases.";
author-version : "${package-version}";
bug-tracker: "https://github.com/coapp-packages/cairo/issues";
stability : "0";
licenses : {
MPL11,
LGPL21
};
}
developer-library[cairo] {
headers: {
headers,
featuresheader,
versionheader
};
}
files[headers] {
root: @"..\src";
include: {
"cairo.h",
"cairo-deprecated.h",
"cairo-ps.h",
"cairo-pdf.h",
"cairo-svg.h",
"cairo-win32.h",
"cairo-script.h",
};
trim-path:all;
}
files[featuresheader] {
root: @"cairo";
include: {
"cairo-features.h",
};
trim-path:all;
}
files[versionheader] {
root: @"..";
include: {
"cairo-version.h",
};
trim-path:all;
}