-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 965 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
38
{
"name": "esy-pcre2",
"version": "2.10.33000",
"description": "Automake packaged for esy",
"esy": {
"buildsInSource": true,
"exportedEnv": {
"PKG_CONFIG_PATH": {
"scope": "global",
"val": "#{self.lib / 'pkgconfig' : $PKG_CONFIG_PATH }"
},
"C_INCLUDE_PATH": {
"scope": "global",
"val": "#{self.install / 'include' : $C_INCLUDE_PATH}"
},
"LD_LIBRARY_PATH": {
"scope": "global",
"val": "#{self.lib : $LD_LIBRARY_PATH}"
}
},
"build": [
"chmod u+x configure install-sh",
"find ./ -exec touch -t 200905010101 {} +",
[
"bash",
"-c",
"#{os == 'windows' ? './configure --prefix=$cur__install --host x86_64-w64-mingw32 --disable-dependency-tracking' : './configure --prefix=$cur__install --disable-dependency-tracking'}"
],
[
"make"
],
[
"make",
"install"
]
]
}
}