From ec4fbd0d12a937f74546dc6ed9f7af02531cba11 Mon Sep 17 00:00:00 2001 From: Mateusz Piotrowski Date: Fri, 7 Feb 2020 21:56:53 +0100 Subject: [PATCH] Add some initial information on how to install raylib on FreeBSD --- Working-on-FreeBSD.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Working-on-FreeBSD.md diff --git a/Working-on-FreeBSD.md b/Working-on-FreeBSD.md new file mode 100644 index 0000000..16173a4 --- /dev/null +++ b/Working-on-FreeBSD.md @@ -0,0 +1,13 @@ +# Installation + +raylib can be installed on FreeBSD with pkg (prebuiled binary package, recommended): + +```console +# pkg install raylib +``` + +or using the FreeBSD Ports Collection (building from source, if you want to modify the sources): + +```console +# cd /usr/ports/devel/raylib && make install clean +```