mirror of
https://git.freebsd.org/ports.git
synced 2025-04-30 02:26:38 -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://electronjs.org/
11 lines
377 B
Python
11 lines
377 B
Python
--- build/detect_host_arch.py.orig 2023-03-30 00:33:39 UTC
|
|
+++ build/detect_host_arch.py
|
|
@@ -20,6 +20,8 @@ def HostArch():
|
|
host_arch = 'ia32'
|
|
elif host_arch in ['x86_64', 'amd64']:
|
|
host_arch = 'x64'
|
|
+ elif host_arch.startswith('arm64'):
|
|
+ host_arch = 'arm64'
|
|
elif host_arch.startswith('arm'):
|
|
host_arch = 'arm'
|
|
elif host_arch.startswith('aarch64'):
|