编译 DeaDBeefPlayer 时出错

编译 DeaDBeefPlayer 时出错

bash 的输出:

/bin/bash: /home/barrakudarain/Progs/Musical: No such file or directory
Makefile:442: recipe for target 'install-pkglibLTLIBRARIES' failed
make[2]: *** [install-pkglibLTLIBRARIES] Error 127
make[2]: Leaving directory '/home/barrakudarain/Progs/Musical Players/DeadbeefPlayer/plugins/mp3'
Makefile:607: recipe for target 'install-am' failed
make[1]: *** [install-am] Error 2
make[1]: Leaving directory '/home/barrakudarain/Progs/Musical Players/DeadbeefPlayer/plugins/mp3'
Makefile:769: recipe for target 'install-recursive' failed
make: *** [install-recursive] Error 1

我的默认程序是:

./configure
make
sudo make install

帮助!

答案1

DeaDBeeF 播放器可能不是最容易编译和安装的,但也许可以尝试以下步骤,它在我的 Zesty 设置上运行良好,并且我相信经过一些调整后在其他版本的 Ubuntu 上运行良好:

安装构建工具和依赖项

您将需要一些构建工具以及一些开发文件来构建一些 DeaDBeeF 插件。运行以下命令单一命令从终端窗口:

sudo apt-get install build-essential checkinstall intltool yasm \
libjansson-dev libmpg123-dev libvorbis-dev libflac-dev libwavpack-dev \
libsamplerate0-dev libgtk-3-dev libcdio-dev libcddb2-dev libsndfile1-dev \
libavcodec-dev libavformat-dev libfaad-dev libimlib2-dev libzip-dev \
libjpeg-dev libpng-dev libasound2-dev

然后构建 DeaDBeeF 本身:

构建并安装 DeaDBeeF:

使用以下单一命令下载、编译和安装DeaDBeeF:

mkdir $HOME/dead_beef_build && cd $HOME/dead_beef_build && \
wget --no-check-certificate --content-disposition \
http://sourceforge.net/projects/deadbeef/files/deadbeef-0.7.2.tar.bz2/download && \
tar xvf deadbeef-0.7.2.tar.bz2 && \
cd deadbeef-0.7.2 && \
./configure && make && \
sudo checkinstall --pakdir "$HOME/dead_beef_build" --backup=no --deldoc=yes \
                  --pkgname deadbeef --pkgversion "0.7.2" --fstrans=no \
                  --deldesc=yes --delspec=yes --default && \
sudo ldconfig

然后 DeaDBeeF 就可以开始了 :)。

插件:

在编译期间,您应该会看到插件列表飞过。在此版本中,您将可以使用以下插件:

Plugin Summary:

    stdio: yes - Standard IO plugin
    gme: yes - chiptune music player based on GME
    nullout: yes - NULL output
    alsa: yes - ALSA output
    oss: yes - oss output plugin
    pulse: no - PulseAudio output plugin
    coreaudio: no - CoreAudio output plugin
    sid: yes - SID player based on libsidplay2
    ffap: yes - Monkey's audio (APE) decoder
    lastfm: no - last.fm scrobbler
    mp3: yes - mp3 plugin
        libmad: no - libmad backend for mp3 plugin
        libmpg123: yes - libmpg123 backend for mp3 plugin
    vorbis: yes - ogg vorbis player
    flac: yes - flac player
    wavpack: yes - wavpack player
    sndfile: yes - PCM (wav,aiff,etc) player based on libsndfile
    vtx: yes - vtx file player (ay8910/12 emulation)
    adplug: yes - adplug player (OPL2/OPL3 emulation)
    vfs_curl: no - http/ftp streaming support
    cdda: yes - cd audio player
    gtkui: no - GTK2 user interface
    gtkui3: yes - GTK3 user interface
    hotkeys: yes - Local and global hotkeys support
    ffmpeg: yes - ffmpeg codecs
    artwork: no - Cover art plugin
    supereq: yes - Equalizer based on Super EQ library by Naoki Shibata
    notify: yes - notification-daemon support plugin
    shellexec: yes - shell commands plugin
    shellexecui: yes - GTK user interface for setting up shellexec plugin
    musepack: yes - musepack player plugin
    wildmidi: yes - WildMidi player plugin
    tta: yes - TTA player plugin
    dca: yes - libdca (DTS Audio) player plugin
    aac: yes - AAC player (m4a, aac, mp4) based on FAAD2
    mms: yes - mms streaming support
    dsp_src: yes - High quality samplerate conversion using libsamplerate
    m3u: yes - M3U and PLS playlist support
    vfs_zip: yes - zip archive support
    converter: yes - plugin for converting files to any formats
    psf: yes - PSF format plugin, using AOSDK
    dumb: yes - DUMB module plugin, for MOD, S3M, etc
    shn: yes - SHN plugin based on xmms-shn
    mono2stereo: yes - mono2stereo DSP plugin
    alac: yes - ALAC plugin
    wma: yes - WMA plugin
    pltbrowser: yes - playlist browser gui plugin
    sc68: yes - sc68 Atari ST And Amiga player

但是可以通过追踪所需-dev文件、安装这些文件,然后重新编译 DeaDBeeF 来添加更多内容。

必填截图:

以下是使用上述说明在我的 Zesty 设置上运行 DeaDBeeF 的屏幕截图:

在此处输入图片描述

希望这些详细的说明也能帮助您顺利前行 :)。

相关内容