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
助けて!
DeaDBeeFプレーヤーは、コンパイルとインストールが最も簡単ではないかもしれませんが、私のZestyセットアップで十分に機能する次の手順を試してみてください。Ubuntuの他のバージョンでもいくつかの調整で十分機能すると確信しています。
Install Build Tools&Dependencies
DeaDBeeFプラグインのいくつかをビルドするには、いくつかのビルドツールといくつかの開発ファイルが必要になります。ターミナルウィンドウから次の1つのコマンドを実行します。
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のスクリーンショットを次に示します。
そして、うまくいけば、これらの詳細な指示があなたに途中であなたを連れて行くでしょう:)。