From 644280c8d9e4245f235a5f844809d3fc79ab3155 Mon Sep 17 00:00:00 2001
From: Joel Grunbaum <joelgrun@gmail.com>
Date: Sun, 08 Feb 2026 00:22:16 +0000
Subject: [PATCH] Skip trying to build packages in repos

---
 README.md |   25 +++++++++++++++++++++----
 1 files changed, 21 insertions(+), 4 deletions(-)

diff --git a/README.md b/README.md
index 1ddf3f5..dd87bde 100644
--- a/README.md
+++ b/README.md
@@ -16,14 +16,31 @@
 
 ## Installation
 
+### From Source
 ```bash
-# From source
-pip install -e .
+# Clone the repository
+git clone https://github.com/joelgrun/archbuild
+cd archbuild
 
-# Or with development dependencies
-pip install -e ".[dev]"
+# Set up virtual environment and install
+python -m venv .venv
+source .venv/bin/activate
+pip install -e .
 ```
 
+### Native Arch Linux Package
+To build and install as a native system package:
+```bash
+makepkg -si
+```
+
+### Standalone Binary
+To create a standalone executable that doesn't require Python:
+```bash
+python scripts/build_binary.py
+```
+The binary will be available at `dist/archbuild-bin`.
+
 ## Quick Start
 
 1. **Create configuration**:

--
Gitblit v1.10.0