deno.land / x / webview@0.8.0 / script / build.ts

نووسراو ببینە
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
import { ensureDir } from "jsr:@std/fs@0.218/ensure_dir";
const decoder = new TextDecoder();const architectures = [["x86_64", "x86_64"], ["aarch64", "arm64"]] as const;
const ExitType = { Exit: "exit", Fail: "fail", Never: "never",} as const;type ExitType = typeof ExitType[keyof typeof ExitType];
const LogType = { Success: "success", Always: "always", Fail: "fail", Never: "never",} as const;type LogType = typeof LogType[keyof typeof LogType];
function indent(source: string, spaces = 2): string { return source.split("\n").map((line) => `${" ".repeat(spaces)}${line}\n`) .join("");}
async function command<T extends Deno.CommandOptions>( cmd: string, { opts, exit, log }: { opts?: T; exit?: ExitType; log?: LogType } = {},): Promise<{ code: number; stdout: string; stderr: string;}> { if (opts !== undefined) { opts.stdout = "piped"; opts.stderr = "piped"; }
exit ??= ExitType.Never; log ??= LogType.Always;
const command = new Deno.Command(cmd, opts); const { code, stdout, stderr } = await command.output();
const stdoutStr = decoder.decode(stdout); const stderrStr = decoder.decode(stderr);
if (code === 0) { if (log !== "never") { console.log(`Successfully ran "${cmd} ${(opts?.args ?? []).join(" ")}"`); }
if (log === "success" || log === "always") { if (stdoutStr.length !== 0) { console.log(`stdout:\n${indent(stdoutStr)}`); } if (stderrStr.length !== 0) { console.log(`stderr:\n${indent(stderrStr)}`); } } } else { if (log !== "never") { console.log(`Failed run "${cmd}"`); }
if (log === "fail" || log === "always") { if (stdoutStr.length !== 0) { console.log(`stdout:\n${indent(stdoutStr)}`); } if (stderrStr.length !== 0) { console.log(`stderr:\n${indent(stderrStr)}`); } console.log(`code: ${code}`); }
if (exit === ExitType.Fail) { Deno.exit(code); } }
if (exit === ExitType.Exit) { Deno.exit(code); }
return { code, stdout: stdoutStr, stderr: stderrStr, };}
await ensureDir("build");
switch (Deno.build.os) { case "windows": { await command("script/build.bat", { exit: ExitType.Exit, }); break; }
case "darwin": { for (const [denoArch, gccArch] of architectures) { await command("c++", { opts: { exit: ExitType.Fail, args: [ "webview/webview.cc", "-dynamiclib", "-fpic", "-DWEBVIEW_COCOA", "-std=c++11", "-Wall", "-Wextra", "-pedantic", "-framework", "WebKit", "-arch", gccArch, "-o", `build/libwebview.${denoArch}.dylib`, ], }, }); } Deno.exit(0); break; }
case "linux": { const { stdout } = await command("pkg-config", { opts: { args: [ "--cflags", "--libs", "gtk+-3.0", "webkit2gtk-4.0", ], }, }); await command("c++", { opts: { exit: ExitType.Fail, args: [ "webview/webview.cc", "-DWEBVIEW_GTK", "-shared", "-std=c++11", "-Wall", "-Wextra", "-pedantic", "-fpic", ...stdout.trim().split(" "), "-o", "build/libwebview.so", ], }, }); Deno.exit(0); break; }}
webview

Version Info

Tagged at
2 months ago