Rhythmbox: Difference between revisions
From CBLFS
Jump to navigationJump to search
No edit summary |
No edit summary |
||
| Line 14: | Line 14: | ||
* [[libgnomeui]] | * [[libgnomeui]] | ||
* [[GNOME Virtual File System]] | * [[GNOME Virtual File System]] | ||
* [[ | * [[GStreamer]] | ||
=== Recommended === | === Recommended === | ||
* [[libsexy]] (will default to internal version if not found) | * [[libsexy]] (will default to internal version if not found) | ||
Latest revision as of 16: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
- Python and PyGTK
- Totem
- D-BUS Glib
- HAL
- libgpod
- GNOME Keyring
- libgda
- Avahi or Howl or mDNSResponder
- libnotify
- libsoup (required for daap or audioscrobbler)
- libMusicBrainz
- Nautilus CD Burner
- Lirc
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