From 0235d9ec4a8ad3fb3e372d9eb455d8c26ce18a27 Mon Sep 17 00:00:00 2001 From: Hajime Hoshi Date: Fri, 12 May 2017 23:52:07 +0900 Subject: [PATCH] Updated FreeBSD (markdown) --- FreeBSD.md | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/FreeBSD.md b/FreeBSD.md index 4f9780c..29db2ef 100644 --- a/FreeBSD.md +++ b/FreeBSD.md @@ -1,7 +1,20 @@ -Very experimental. Not finished yet. +# Set up desktop environment + +Ebiten requires X Window system and you need to install a window manager like gnome3. See [the official manual](https://www.freebsd.org/doc/handbook/x11-wm.html). Note that you also need to do `pkg install xorg`. + +# Install utilities + +At least, Go and git are required. ``` $ pkg install go1.8 git ``` -(TBD) \ No newline at end of file +OpenAL is required for Ebiten's audio package. Note that the `openal` package is pretty old and doesn't work. Install `openal-soft` instead. + +``` +$ pkg install openal-soft +``` + +That's it! +