Compile FreeBSD

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

Compiling on FreeBSD

Install the required dependencies:

   sudo pkg install pkgconfig cmake git boost-libs sqlite gstreamer qt6 libcdio libmtp libgpod

Compile and install:

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

(If you already did `git clone`, do `git pull` to make sure you have the latest code).