From 45a4890031192f4e7409443f98e824dad17ba175 Mon Sep 17 00:00:00 2001 From: Adam Malczewski Date: Fri, 22 May 2026 16:19:35 +0900 Subject: feat: Arch Linux packaging with Electron frontend, systemd backend service, and Windows exe build - Add Electron wrapper (main.cjs, preload.cjs) for desktop frontend - Add systemd service unit, env config, and sysusers for backend API - Add PKGBUILD and .install for Arch package (makepkg -si) - Add desktop entry, SVG/PNG icon, and wrapper scripts - Add bin/build-pkg, bin/install-pkg, bin/windows-pkg scripts - Make API port configurable via PORT env var (default 3000, prod 18390) - Add electron-builder config for Windows exe cross-compilation - Set vite base to './' for Electron file:// loading --- bin/build-pkg | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100755 bin/build-pkg (limited to 'bin/build-pkg') diff --git a/bin/build-pkg b/bin/build-pkg new file mode 100755 index 0000000..904a0bb --- /dev/null +++ b/bin/build-pkg @@ -0,0 +1,8 @@ +#!/usr/bin/env bash +set -euo pipefail + +SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)" +PACKAGING_DIR="$(dirname "$SCRIPT_DIR")/packaging" + +cd "$PACKAGING_DIR" +makepkg -fd "$@" -- cgit v1.2.3