summaryrefslogtreecommitdiff
path: root/README.rst
diff options
context:
space:
mode:
authorTomás Touceda <chiiph@leap.se>2013-11-27 11:00:04 -0300
committerTomás Touceda <chiiph@leap.se>2013-11-27 11:00:04 -0300
commit5ca02d8996284daef716364d54e548b6190c3ef9 (patch)
tree30789ae04ae6a6b98c745d7522050ea63df3cde7 /README.rst
parent33e5c8a339e2ac0300256d81271c05e556fb3083 (diff)
parentb29a76bf334238e6200b29208c627c71090860da (diff)
Merge branch 'feature/linux_bundle' into develop
Diffstat (limited to 'README.rst')
-rw-r--r--README.rst17
1 files changed, 16 insertions, 1 deletions
diff --git a/README.rst b/README.rst
index d7eaaf3..35f2fbf 100644
--- a/README.rst
+++ b/README.rst
@@ -19,6 +19,12 @@ NOTE: Most of this will be done automatically in a while, but this is how it's d
::
pip install -r pkg/requirements.pip
+- Install the needed dependencies
+
+::
+ # Linux only dependencies
+ aptitude install libsqlite3-dev
+
- psutils is a dependency for another dependency, it might get installed in a zip form, which we don't want, so we install it by hand for now
::
@@ -50,12 +56,21 @@ NOTE: Most of this will be done automatically in a while, but this is how it's d
git clone git://gitorious.org/pyside/shiboken.git
git clone git://gitorious.org/pyside/pyside.git
git clone git://gitorious.org/pyside/pyside-tools.git
+
+ # OSX
export PYSIDESANDBOXPATH=$HOME/Code/pyside/sandbox
+ export DYLD_LIBRARY_PATH=$PYSIDESANDBOXPATH/lib:$DYLD_LIBRARY_PATH
+
+ # Linux
+ export PYSIDESANDBOXPATH=$HOME/sandbox
+ export LD_LIBRARY_PATH=$PYSIDESANDBOXPATH/lib:$LD_LIBRARY_PATH
+
export PATH=$PYSIDESANDBOXPATH/bin:$PATH
export PYTHONPATH=$PYSIDESANDBOXPATH/lib/python2.6/site-packages:$PYTHONPATH
- export DYLD_LIBRARY_PATH=$PYSIDESANDBOXPATH/lib:$DYLD_LIBRARY_PATH
export PKG_CONFIG_PATH=$PYSIDESANDBOXPATH/lib/pkgconfig:$PKG_CONFIG_PATH
+ alias runcmake='cmake .. -DCMAKE_INSTALL_PREFIX=$PYSIDESANDBOXPATH'
+
# In OSX, the paths may vary depending on the Qt installation
runcmake -DCMAKE_OSX_DEPLOYMENT_TARGET=10.7 -DCMAKE_OSX_SYSROOT=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.8.sdk .. -DQT_QMAKE_EXECUTABLE=/usr/local/bin/qmake -DQT_INCLUDE_DIR=/usr/local/include/ -DQT_INCLUDES=/usr/local/include/ -DALTERNATIVE_QT_INCLUDE_DIR=/usr/local/include/
# In Linux