From f2cf20ce9bdf4a9f6cd0300a005ca3ec6ae89e3c Mon Sep 17 00:00:00 2001 From: Jan Helbling Date: Tue, 14 Oct 2025 13:30:26 +0200 Subject: [PATCH] INSTALL.MD updated for OpenBSD (#2186) Co-authored-by: Jan Helbling --- INSTALL.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/INSTALL.md b/INSTALL.md index 03b28ba464..1cca7f8ae6 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -357,6 +357,26 @@ nix-shell -p pkgsCross.arm-embedded.stdenv.cc git pkg-config libpng ``` Then proceed to [Choosing where to store pokeemerald (Linux)](#choosing-where-to-store-pokeemerald-linux). +### OpenBSD +Install requirements: +```bash +pkg_add gmake bash arm-none-eabi-binutils clang git +``` + +Clone pokeemerald & agbcc, and Build agbcc +```bash +git clone https://github.com/pret/pokeemerald +git clone https://github.com/pret/agbcc +cd agbcc && ./build.sh +./install.sh ../pokeemerald +``` + +Build the ROM: +```bash +cd ../pokeemerald +gmake +``` + ### Other distributions _(Specific instructions for other distributions would be greatly appreciated!)_