Compile Debian

From Strawberry Music Player Wiki
Revision as of 07:19, 23 October 2023 by Jonas (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Install required dependencies:

 apt-get install -y \
 git make cmake gcc g++ gettext \
 libboost-dev libglib2.0-dev dpkg-dev libdbus-1-dev libprotobuf-dev protobuf-compiler libsqlite3-dev libgnutls28-dev libicu-dev \
 libasound2-dev libpulse-dev \
 qt6-base-dev qt6-base-dev-tools qt6-tools-dev qt6-tools-dev-tools qt6-l10n-tools \
 libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev gstreamer1.0-alsa gstreamer1.0-pulseaudio \
 libchromaprint-dev libfftw3-dev libtag1-dev \
 libcdio-dev libmtp-dev libgpod-dev

Compile:

 git clone --recursive https://github.com/strawberrymusicplayer/strawberry
 cd strawberry
 mkdir build
 cd build
 cmake ..
 make -j$(nproc)
 sudo make install