From 92c6ea5047f39e8cd3dca70daac3b257a5bd3bcf Mon Sep 17 00:00:00 2001 From: Soichi Hayashi Date: Sun, 21 Oct 2018 13:03:24 -0400 Subject: [PATCH] Update README.md Added instruction to install openal and sndfile libraries. --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index 9c41fa8..b3c3fce 100644 --- a/README.md +++ b/README.md @@ -8,6 +8,14 @@ __ears__ is build on the top of OpenAL and libsndfile. * Provides an access to the OpenAL spatialization functionality in a simple way. * Accepts a lot of audio formats, thanks to libsndfile. +# Dependencies + +You need to install libopenal and libsndfile. On Ubuntu, you can do.. + +``` +sudo apt install libopenal-dev libsndfile-dev +``` + # A simple example ```Rust