DeaDBeeF is a multiple-platform music player for desktop operating systems.
If you wish to chat with developers, join us on Discord.
NOTE: The macOS version has not been officially released, and has many unresolved issues and unimplemented features
The overall process is simple, but it's hard to figure out the dependencies.
Please consult the README file in the same folder for more details, or visit the wiki page
If you have the dependencies - follow these simple steps:
- Install Git, Clang toolchain
- Remember to get submodules:
git submodule update --init
- Install dependencies
- Run
./autogen.sh
to bootstrap - Run
CC=clang CXX=clang++ ./configure
, followed withmake
andsudo make install
. - For more information about the build process, read the generated INSTALL file and the output of
./configure --help
.
- Install Xcode. The latest one is the best, but older versions will usually keep working for a year or two.
- Run
sudo xcode-select --install
- This will configure git and command line build tools - Clone the deadbeef git repository
- Remember to get submodules:
git submodule update --init
- Run
xcodebuild -project osx/deadbeef.xcodeproj -target DeaDBeeF -configuration Release
- The output will be located here:
osx/build/Release/DeaDBeeF.app
- Open the
osx/deadbeef.xcodeproj
in Xcode, and build/run from there
- MSYS2: Install the 64-bit version of msys2 and ensure to run
pacman -Syu
- Premake5: v5.0.0-beta1
- Toolchain
pacman -S mingw-w64-x86_64-libzip mingw-w64-x86_64-pkg-config mingw-w64-x86_64-dlfcn mingw-w64-x86_64-clang mingw-w64-x86_64-libblocksruntime git make tar xz
- Dependencies:
pacman -S mingw-w64-x86_64-jansson mingw-w64-x86_64-gtk3 mingw-w64-x86_64-gtk2 mingw-w64-x86_64-mpg123 mingw-w64-x86_64-flac mingw-w64-x86_64-portaudio
- Plugin dependencies: follow the Windows plugin status page to find out dependencies of the plugins, and install them too.
- Ensure that you are in mingw64 shell (run mingw64.exe) and clone this git repository
- From deadbeef main directory run
premake5 --standard gmake2
using your corresponding path topremake5.exe
- Compile with
make config=debug_windows
(debug build) ormake config=release_windows
(stripped/release build) - Find the resulting binaries in
bin/debug
orbin/release
- GTK3 uses Windows-10 theme and Windows-10-Icons by default. If they are not in msys2 tree, then they must be manually placed in the
share/icons
andshare/themes
. A different theme can be specified by editing theetc/gtk-3.0/settings.ini
file.