I took the liberty to add one line to the wiki at http://developer.qt.nokia.com/wiki/Building_PySide_on_Linux
list of git downloads of source: git clone git://gitorious.org/pyside/pyside-tools.git IMHO, pyside-tools are a significant part of PySide that enables easy use of Qt Designer in PySide projects, particularly for GUI or Python programs. If there are no objections, I would also like to add an alternative script alternate_pull_build_all that does the download and installation in one hit. It is a very simple script that lends itself to easy modification. In particular, in case of partial failure, only the failed steps can easily be done without repeating already successfully installed parts of PySide. ******************* #!/usr/bin/env bash # alter_build_all.sh modified from # http://lynxline.com/superhybrids-part-2-now-qt-pyside/ git clone git://gitorious.org/pyside/apiextractor.git cd apiextractor mkdir build && cd build cmake .. && make && make install && cd ../.. # git clone git://gitorious.org/pyside/generatorrunner.git cd generatorrunner mkdir build && cd build cmake .. && make && make install && cd ../.. # git clone git://gitorious.org/pyside/shiboken.git cd shiboken mkdir build && cd build cmake .. && make && make install && cd ../.. sudo ldconfig # git clone git://gitorious.org/pyside/pyside.git cd pyside mkdir build && cd build cmake .. && make && make install && cd ../.. sudo ldconfig # git clone git://gitorious.org/pyside/pyside-tools.git cd pyside-tools rm -rf build mkdir build && cd build cmake .. && make && make install && cd ../.. ******************* I used the script to successfully build PySide on a kubuntu 10.10 OS and currently use it for PySide experimentation. Al. -- Algis http://akabaila.pcug.org.au
_______________________________________________ PySide mailing list [email protected] http://lists.openbossa.org/listinfo/pyside
