Difference between revisions of "D-BUS Python"
From CBLFS
Jump to navigationJump to search (→Required) |
|||
Line 8: | Line 8: | ||
=== Required === | === Required === | ||
− | |||
* [[D-BUS Glib]] | * [[D-BUS Glib]] | ||
* [[Pkg-config]] | * [[Pkg-config]] |
Revision as of 09:21, 23 December 2006
Python Binding: | http://dbus.freedesktop.org/releases/dbus-python/dbus-python-0.83.0.tar.gz |
---|
Dependencies
Required
Non-Multilib
Compile the package:
python setup.py build
Install the package:
python setup.py install
Multilib
32Bit
Compile the package:
PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" USE_ARCH=32 python setup.py build
Install the package:
PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" USE_ARCH=32 python setup.py install
N32
Compile the package:
PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" USE_ARCH=n32 python setup.py build
Install the package:
PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" USE_ARCH=n32 python setup.py install
64 Bit
Compile the package:
PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" USE_ARCH=64 python setup.py build
Install the package:
PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" USE_ARCH=64 python setup.py install