Skip to content

Commit 2e1e735

Browse files
committed
* Update install script: Add FreeBSD to Ring2EXE
1 parent 0fb6a84 commit 2e1e735

1 file changed

Lines changed: 17 additions & 12 deletions

File tree

src/utils/install.ring

Lines changed: 17 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -142,18 +142,23 @@ done
142142

143143

144144
func getRing2EXEContent
145-
return `aLibrary = [:name = :webview,
146-
:title = "WebView",
147-
:windowsfiles = [
145+
return `aLibrary = [
146+
:name = :webview,
147+
:title = "WebView",
148+
:windowsfiles = [
148149
"ring_webview.dll"
149-
],
150-
:linuxfiles = [
150+
],
151+
:linuxfiles = [
151152
"libring_webview.so"
152-
],
153-
:macosxfiles = [
153+
],
154+
:macosxfiles = [
154155
"libring_webview.dylib"
155-
],
156-
:ubuntudep = "libgtk-4-1 libwebkitgtk-6.0-4",
157-
:fedoradep = "gtk4 webkitgtk6.0",
158-
:macosxdep = ""
159-
]`
156+
],
157+
:freebsdfiles = [
158+
"libring_webview.so"
159+
],
160+
:ubuntudep = "libgtk-4-1 libwebkitgtk-6.0-4",
161+
:fedoradep = "gtk4 webkitgtk6.0",
162+
:macosxdep = "",
163+
:freebsddep = "webkit2-gtk_60"
164+
]`

0 commit comments

Comments
 (0)