-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 971 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
39
{
"name": "esy-gettext",
"version": "0.20.000",
"description": "gettext packaged for esy",
"esy": {
"buildsInSource": true,
"exportedEnv": {
"LDFLAGS": {
"scope": "global",
"val": "-L#{self.lib} $LDFLAGS"
},
"CFLAGS": {
"scope": "global",
"val": "-I#{self.install / 'include'} $CFLAGS"
}
},
"build": [
"find ./ -exec touch -t 200905010101 {} + ",
"chmod u+x build-aux/git-version-gen ./libtextstyle/build-aux/install-sh",
[
"./configure",
"--disable-dependency-tracking",
"#{os == 'windows' ? '--host=x86_64-w64-mingw32' : ''}",
"#{os == 'linux' ? '--host=x86_64-linux-gnu' : ''}",
"--prefix=#{self.install}"
],
[
"make"
],
[
"make",
"install"
]
]
},
"dependencies": {
"esy-libiconv": "prometheansacrifice/esy-libiconv#38bab1ac2d53ae01b9c945620f6267446c4b2baa"
}
}