forked from esy-packages/esy-harfbuzz
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
32 lines (32 loc) · 973 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
{
"name": "@revery/esy-harfbuzz",
"version": "2.6.8002",
"description": "Mirror of harfbuzz",
"license": "MIT",
"url": "https://github.com/bryphe/esy-harfbuzz",
"esy": {
"build": [
["bash", "-c", "./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'}"],
["bash", "-c", "./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": { }
}