Compile FreeBSD: Difference between revisions

From Strawberry Music Player Wiki
Jump to navigation Jump to search
(Created page with "Compiling on FreeBSD Install the required dependencies: sudo pkg install cmake git boost-libs 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).")
 
No edit summary
 
Line 3: Line 3:
Install the required dependencies:
Install the required dependencies:


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


Compile and install:
Compile and install:

Latest revision as of 19:26, 26 November 2024

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).