Rhythmbox: Difference between revisions
From CBLFS
Jump to navigationJump to search
No edit summary |
No edit summary |
||
| Line 2: | Line 2: | ||
|- | |- | ||
!Download Source: | !Download Source: | ||
| http://ftp.gnome.org/pub/GNOME/sources/rhythmbox/ | | http://ftp.gnome.org/pub/GNOME/sources/rhythmbox/{{Rhythmbox-Version2}}/rhythmbox-{{Rhythmbox-Version}}.tar.bz2 | ||
|} | |} | ||
Revision as of 19:15, 17 December 2006
| Download Source: | http://ftp.gnome.org/pub/GNOME/sources/rhythmbox/0.13/rhythmbox-0.13.2.tar.bz2 |
|---|
Dependencies
Required
Recommended
- libsexy (will default to internal version if not found)
Optional
- Python and PyGTK
- Totem
- DBUS (with glib binding)
- 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