Difference between revisions of "Rhythmbox"

From CBLFS
Jump to navigationJump to search
 
 
(4 intermediate revisions by the same user not shown)
Line 2: Line 2:
 
|-
 
|-
 
!Download Source:
 
!Download Source:
| http://ftp.gnome.org/pub/GNOME/sources/rhythmbox/0.9/rhythmbox-0.9.6.tar.bz2
+
| http://ftp.gnome.org/pub/GNOME/sources/rhythmbox/{{Rhythmbox-Version2}}/rhythmbox-{{Rhythmbox-Version}}.tar.bz2
 
|}
 
|}
  
 
----
 
----
 +
 +
{{Blank-Package-Introduction}}
  
 
== Dependencies ==
 
== Dependencies ==
Line 12: Line 14:
 
* [[libgnomeui]]
 
* [[libgnomeui]]
 
* [[GNOME Virtual File System]]
 
* [[GNOME Virtual File System]]
* [[Gstreamer]]
+
* [[GStreamer]]
 
=== Recommended ===
 
=== Recommended ===
 
* [[libsexy]] (will default to internal version if not found)
 
* [[libsexy]] (will default to internal version if not found)
Line 18: Line 20:
 
* [[Python]] and [[PyGTK]]
 
* [[Python]] and [[PyGTK]]
 
* [[Totem]]
 
* [[Totem]]
* [[DBUS]] (with glib binding)
+
* [[D-BUS Glib]]
 
* [[HAL]]
 
* [[HAL]]
 
* [[libgpod]]
 
* [[libgpod]]
Line 28: Line 30:
 
* [[libMusicBrainz]]
 
* [[libMusicBrainz]]
 
* [[Nautilus CD Burner]]
 
* [[Nautilus CD Burner]]
* [[LIRC]]
+
* [[Lirc]]
  
 
== Non-Multilib ==
 
== Non-Multilib ==

Latest revision as of 17:32, 19 March 2009

Download Source: http://ftp.gnome.org/pub/GNOME/sources/rhythmbox/0.13/rhythmbox-0.13.2.tar.bz2

Introduction to Rhythmbox

Project Homepage: Unknown

Dependencies

Required

Recommended

  • libsexy (will default to internal version if not found)

Optional

Non-Multilib

Compile the package:

./configure --prefix=${GNOME_PREFIX} \
    --sysconfdir=/etc/gnome \
    --localstatedir=/var/lib \
    --libexecdir=${GNOME_PREFIX}/lib/rhythmbox &&
make

Install the package

make install

Multilib

This package does not install any external libraries, only plugins, so only one installation is needed.

32Bit

Compile the package:

export PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" &&
CC="gcc ${BUILD32}" USE_ARCH=32 \
./configure --prefix=${GNOME_PREFIX} \
    --sysconfdir=/etc/gnome \
    --localstatedir=/var/lib \
    --libexecdir=${GNOME_PREFIX}/lib/rhythmbox &&
make

Install the package

make install &&
unset PKG_CONFIG_PATH

N32

Compile the package:

export PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" &&
CC="gcc ${BUILDN32}" USE_ARCH=n32 \
./configure --prefix=${GNOME_PREFIX} \
    --libdir=${GNOME_PREFIX}/lib32 \
    --sysconfdir=/etc/gnome \
    --localstatedir=/var/lib \
    --libexecdir=${GNOME_PREFIX}/lib32/rhythmbox &&
make

Install the package

make install &&
unset PKG_CONFIG_PATH

64Bit

Compile the package:

export PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" &&
CC="gcc ${BUILD64}" USE_ARCH=64 \
./configure --prefix=${GNOME_PREFIX} \
    --libdir=${GNOME_PREFIX}/lib64 \
    --sysconfdir=/etc/gnome \
    --localstatedir=/var/lib \
    --libexecdir=${GNOME_PREFIX}/lib64/rhythmbox &&
make

Install the package

make install &&
unset PKG_CONFIG_PATH