-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 859 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 859 Bytes
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
{
"name": "esy-oniguruma",
"version": "6.9.4000",
"description": "esy-enabled build for oniguruma",
"license": "MIT",
"esy": {
"build": [
["bash", "-c", "#{os == 'windows' ? 'CFLAGS=-O2 CC=x86_64-w64-mingw32-gcc ./configure --prefix=$cur__install --disable-dependency-tracking' : 'CFLAGS=-O2 ./configure --prefix=$cur__install --disable-dependency-tracking'}"],
["make", "install"]
],
"buildsInSource": true,
"exportedEnv": {
"ONIGURUMA_INCLUDE_PATH": {
"val": "#{self.install / 'include'}",
"scope": "global"
},
"ONIGURUMA_LIB_PATH": {
"val": "#{self.lib}",
"scope": "global"
},
"LD_LIBRARY_PATH": {
"val": "#{self.lib : $LD_LIBRARY_PATH}",
"scope": "global"
}
}
},
"dependencies": { }
}