diff --git a/Compiling-on-Ubuntu.md b/Compiling-on-Ubuntu.md index 56a6051..f51564f 100644 --- a/Compiling-on-Ubuntu.md +++ b/Compiling-on-Ubuntu.md @@ -1 +1,22 @@ -1 \ No newline at end of file +Dependencies: + +The following dependencies are required. + + apt-get install -y \ + git make cmake gcc gettext \ + libboost-dev libglib2.0-dev dpkg-dev libdbus-1-dev libprotobuf-dev protobuf-compiler libsqlite3-dev libgnutls28-dev \ + libasound2-dev libpulse-dev \ + qtbase5-dev qtbase5-dev-tools qttools5-dev libqt5x11extras5-dev \ + libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev gstreamer1.0-alsa gstreamer1.0-pulseaudio \ + libchromaprint-dev libfftw3-dev \ + libcdio-dev libmtp-dev libgpod-dev libimobiledevice-dev libplist-dev libusbmuxd-dev + +Compile: + + git clone https://github.com/jonaski/strawberry + cd strawberry + mkdir build + cd build + cmake .. + make -j8 + sudo make install