Compile Arch

From Strawberry Music Player Wiki
Revision as of 16:51, 16 August 2022 by Jonas (talk | contribs) (Created page with "Compiling on Arch. Install the required dependencies: pacman -S --noconfirm git make cmake gcc pkgconf gettext udisks2 dbus sqlite3 alsa-lib pulseaudio boost protobuf gnutls fftw \ qt6-base qt6-tools gst-plugins-base gst-plugins-good taglib chromaprint \ libcdio libmtp libgpod Compile and install: git clone https://github.com/strawberrymusicplayer/strawberry cd strawberry mkdir build cd build cmake .. make -j$(nproc) sudo make...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Compiling on Arch.

Install the required dependencies:

   pacman -S --noconfirm git make cmake gcc pkgconf gettext udisks2 dbus sqlite3 alsa-lib pulseaudio boost protobuf gnutls fftw \
   qt6-base qt6-tools gst-plugins-base gst-plugins-good taglib chromaprint \
   libcdio libmtp libgpod

Compile and install:

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