Add some initial information on how to install raylib on FreeBSD

Mateusz Piotrowski
2020-02-07 21:56:53 +01:00
parent 3331a9e7e4
commit ec4fbd0d12

13
Working-on-FreeBSD.md Normal file

@ -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
```