forked from neovim/libvterm
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
32 lines (32 loc) · 983 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-libvterm",
"version": "1.0.5",
"description": "Esy-enabled libvterm build",
"license": "MIT",
"esy": {
"build": [
[
"bash",
"-c",
"#{os == 'linux' ? 'CFLAGS=-fPIC' : ''} PREFIX=$cur__install #{os == 'windows' ? 'CC=x86_64-w64-mingw32-gcc' : 'CC=gcc'} #{os == 'windows' ? 'AR=x86_64-w64-mingw32-ar' : 'AR=ar'} make install"
]
],
"install": [],
"buildsInSource": true,
"exportedEnv": {
"LIBVTERM_INCLUDE_PATH": {
"val": "#{self.install / 'include'}",
"scope": "global"
},
"LIBVTERM_LIB_PATH": {
"val": "#{self.lib}",
"scope": "global"
},
"LD_LIBRARY_PATH": {
"val": "#{self.lib : $LD_LIBRARY_PATH}",
"scope": "global"
}
}
},
"dependencies": {}
}