Updated Home (markdown)

mborgerson 2021-05-21 02:07:06 -07:00
parent 49cc2d5f65
commit 929deaebba
1 changed files with 1 additions and 43 deletions

44
Home.md

@ -50,27 +50,6 @@ The latest pre-built release version is recommended. Simply download the release
Continue to [Getting Started](#getting-started).
#### Building from Source
If you would like to build from source, you can do so by downloading the [MSYS2 environment](https://www.msys2.org/). After installing MSYS2, you'll need to launch **"MSYS2 MinGW 64-bit"**, otherwise, you may see build failures for missing 'cc'.
```bash
pacman --needed --noconfirm -S git make \
mingw-w64-x86_64-gcc \
mingw-w64-x86_64-glib2 \
mingw-w64-x86_64-libepoxy \
mingw-w64-x86_64-libtool \
mingw-w64-x86_64-pixman \
mingw-w64-x86_64-pkg-config \
mingw-w64-x86_64-SDL2 \
mingw-w64-x86_64-libsamplerate \
mingw-w64-x86_64-ninja \
mingw-w64-x86_64-diffutils \
python3
git clone https://github.com/mborgerson/xemu.git
cd xemu
./build.sh
```
### macOS
[![Download](https://img.shields.io/badge/Download-macOS-blue?logo=Apple&logoColor=white)](https://github.com/mborgerson/xemu/releases/latest/download/xemu-macos-release.zip)
@ -81,17 +60,6 @@ The latest pre-built release version is recommended. Simply download the release
Continue to [Getting Started](#getting-started).
#### Building from Source
If you would like to build from source, you can do so by first installing the [Homebrew package manager](https://brew.sh/) and building with:
```bash
brew update
brew install glib pixman sdl2 libepoxy coreutils pkg-config dylibbundler libsamplerate ninja
git clone https://github.com/mborgerson/xemu.git
cd xemu
./build.sh
```
### Linux (Ubuntu)
[![Download](https://img.shields.io/badge/Download-Ubuntu%20PPA-orange?logo=ubuntu&logoColor=white)](https://launchpad.net/~mborgerson/+archive/ubuntu/xemu)
@ -108,17 +76,7 @@ You can now launch xemu through your typical launcher, or by typing `xemu` at th
Continue to [Getting Started](#getting-started).
#### Building from Source
If you are not using Ubuntu, or would prefer to build from source, you can do so with:
```bash
sudo apt update
sudo apt install build-essential libsdl2-dev libepoxy-dev libpixman-1-dev libgtk-3-dev libssl-dev libsamplerate0-dev ninja-build
git clone https://github.com/mborgerson/xemu.git
cd xemu
./build.sh
```
---
Getting Started
---------------