mirror of
https://git.freebsd.org/ports.git
synced 2025-05-29 01:16:28 -04:00
Build cross platform desktop apps with JavaScript, HTML, and CSS. It's easier than you think. If you can build a website, you can build a desktop app. Electron is a framework for creating native applications with web technologies like JavaScript, HTML, and CSS. It takes care of the hard parts so you can focus on the core of your application. WWW: https://www.electronjs.org/
11 lines
479 B
Python
11 lines
479 B
Python
--- third_party/node/node.py.orig 2024-08-14 20:55:59 UTC
|
|
+++ third_party/node/node.py
|
|
@@ -20,6 +20,8 @@ def GetBinaryPath():
|
|
return os_path.join(os_path.dirname(__file__), *{
|
|
'Darwin': (darwin_path, darwin_name, 'bin', 'node'),
|
|
'Linux': ('linux', 'node-linux-x64', 'bin', 'node'),
|
|
+ 'OpenBSD': ('openbsd', 'node-openbsd', 'bin', 'node'),
|
|
+ 'FreeBSD': ('freebsd', 'node-freebsd', 'bin', 'node'),
|
|
'Windows': ('win', 'node.exe'),
|
|
}[platform.system()])
|
|
|