PyQt: Difference between revisions

From CBLFS
Jump to navigationJump to search
No edit summary
Chipster19 (talk | contribs)
No edit summary
Line 15: Line 15:
* [[sip]]
* [[sip]]
* [[Qt3]]
* [[Qt3]]
{{Note|If you want build [[PyKDE]] you must use '''qt-mt''' option instead '''qt''' in the configure script.}}


== Non-Multilib ==
== Non-Multilib ==
Line 20: Line 22:
Compile the package:
Compile the package:


  QMAKESPEC=linux-g++ python configure.py &&
  QMAKESPEC=linux-g++ python configure.py -y qt &&
  make
  make



Revision as of 12:26, 30 April 2007

Download Source: http://www.riverbankcomputing.com/Downloads/PyQt3/GPL/PyQt-x11-gpl-3.17.4.tar.gz

Introduction to PyQt

Project Homepage: Unknown

Dependencies

Required

Note

If you want build PyKDE you must use qt-mt option instead qt in the configure script.

Non-Multilib

Compile the package:

QMAKESPEC=linux-g++ python configure.py -y qt &&
make

Install the package

make install

Multilib

32Bit

Compile the package:

USE_ARCH=32 QMAKESPEC=linux-g++-32 \
python configure.py -y qt &&
make

Install the package:

make install &&
mv -v /usr/bin/pyuic{,-32}

N32

TO DO!ma

64Bit

Compile the package:

USE_ARCH=64 QMAKESPEC=linux-g++-64 \
python configure.py -y qt &&
make

Install the package:

make install &&
mv /usr/bin/pyuic{,-64} &&
ln -sfv multiarch_wrapper /usr/bin/pyuic
Retrieved from "?title=PyQt&oldid=9805"