ubuntu10.04下audacious2.5源码编译过程

本文旧版audacious2.4的编译过程:http://www.cnblogs.com/icejoywoo/archive/2010/11/26/1889321.htm

编译过程大部分是一样的,只有小的变化

下载地址:

http://audacious-media-player.org/downloads

http://distfiles.atheme.org/

下载下面三个包:

http://distfiles.atheme.org/audacious-2.5.0.tgz

http://distfiles.atheme.org/audacious-plugins-2.5.0.tgz

http://distfiles.atheme.org/libmowgli-0.9.50.tar.bz2

编译步骤:

Audacious Core: audacious-2.5.0.tgz
Audacious Plugins: audacious-plugins-2.5.0.tgz


注意:希望大家可以多使用tab补全功能,本文中的命令可能有误


先编译audacious-2.5.0

代码:
tar xvf audacious-2.5.0.tgz
cd audacious-2.5.0
sudo apt-get build-dep audacious

./configure --enable-chardet  //加参数开启字符集自动识别  
make  
sudo make install
注意:如果configure那步出错,提示为libmowgli >= 0.9
代码:
tar xvf libmowgli-0.9.50.tar.bz2
./configure
make
sudo make install
安装完成后,重复上述步骤
./configure --enable-chardet  //加参数开启字符集自动识别  
make  
sudo make install
下面安装audacious-plugins-2.5.0
tar xvf audacious-plugins-2.5.0.tgz
cd audacious-plugins-2.5.0
sudo apt-get build-dep audacious-plungins

./configure
make  
sudo make install
打开播放器,进行测试
代码:
audacious
歌词问题

osd-lyrics是一款支持多种播放器的插件,在论坛了解到,很多人对这款歌词插件还是比较喜欢的。

环境:Ubuntu 10.04
播放器:Audacious
歌词插件:osd-lyrics

支持我使用的这两个播放器

  下载地址:http://code.google.com/p/osd-lyrics/downloads/list

官方提供了基于Ubuntu和Fedora的包,所以这两款系统的用户可以直接下载双击就可以安装了。而其它版本就需要用源码安装了。

原文地址:https://www.cnblogs.com/icejoywoo/p/2045426.html