-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
37 lines (37 loc) · 1023 Bytes
/
package.json
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
{
"name": "esy-harfbuzz",
"version": "1.9.1008",
"description": "Mirror of harfbuzz",
"license": "MIT",
"url": "https://github.com/bryphe/esy-harfbuzz",
"esy": {
"build": [
["./esy/prep.sh"],
["bash", "-c", "#{os == 'windows' ? './esy/configure-windows.sh' : 'echo'}"],
["bash", "-c", "#{os == 'darwin' ? './esy/configure-osx.sh' : 'echo'}"],
["bash", "-c", "#{os == 'linux' ? './esy/configure-linux.sh' : 'echo'}"],
["./esy/build.sh"]
],
"buildsInSource": "_build",
"exportedEnv": {
"HARFBUZZ_INCLUDE_PATH": {
"val": "#{self.install / 'include' / 'harfbuzz'}",
"scope": "global"
},
"HARFBUZZ_LIB_PATH": {
"val": "#{self.lib}",
"scope": "global"
},
"HARFBUZZ_BIN_PATH": {
"val": "#{self.bin}",
"scope": "global"
}
}
},
"dependencies": {
"esy-cmake": "^0.3.2"
},
"devDependencies": {
"esy-cmake": "^0.3.2"
}
}