Initial commit

This commit is contained in:
Cody Young (horiba)
2025-12-22 19:52:55 +00:00
commit e18f1909ed
9 changed files with 233 additions and 0 deletions

13
build-ubuntu.patch Normal file
View File

@@ -0,0 +1,13 @@
--- build.sh 2025-12-22 16:35:08.000000000 +0000
+++ build-ubuntu.sh 2025-12-22 16:37:14.665426491 +0000
@@ -7,8 +7,8 @@
# Check dependencies
echo "Checking dependencies..."
command -v cmake >/dev/null 2>&1 || { echo "Error: cmake not found. Install with: sudo pacman -S cmake"; exit 1; }
-pacman -Q extra-cmake-modules >/dev/null 2>&1 || { echo "Error: extra-cmake-modules not found. Install with: sudo pacman -S extra-cmake-modules"; exit 1; }
-pacman -Q fcitx5 >/dev/null 2>&1 || { echo "Error: fcitx5 not found. Install with: sudo pacman -S fcitx5"; exit 1; }
+dpkg -s extra-cmake-modules >/dev/null 2>&1 || { echo "Error: extra-cmake-modules not found. Install with: sudo apt install extra-cmake-modules"; exit 1; }
+dpkg -s fcitx5 >/dev/null 2>&1 || { echo "Error: fcitx5 not found. Install with: sudo apt install fcitx5"; exit 1; }
echo "✓ All dependencies found"
echo