Changes between Version 27 and Version 28 of BuildingQt5OnHarmattan


Ignore:
Timestamp:
Oct 14, 2011 3:17:52 AM (13 years ago)
Author:
zeno.albisser@nokia.com
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • BuildingQt5OnHarmattan

    v27 v28  
    3535   * {{{perl Tools/Scripts/build-webkit -2 --qt --release --no-3d-canvas --makearg="CONFIG+=use_qt_mobile_theme"}}}
    3636
     37== Install dependencies on the device ==
     38
     39   * Some packages are not in the device apt repositories and therefore need to be transfered from scratchbox.
     40       * Execute the following lines inside scratchbox:
     41         {{{
     42fakeroot apt-get -d install libxcb-image0 libxcb-keysyms1 libxcb-icccm1 libxcb-aux0 libxcb-event1 libxcb-property1
     43mkdir ~/swork/packages && cd ~/swork/packages
     44cp /var/cache/apt/archives/libxcb-image0_* .
     45cp /var/cache/apt/archives/libxcb-keysyms1_* .
     46cp /var/cache/apt/archives/libxcb-icccm1_* .
     47cp /var/cache/apt/archives/libxcb-aux0_* .
     48cp /var/cache/apt/archives/libxcb-event1_* .
     49cp /var/cache/apt/archives/libxcb-property1_* .
     50}}}
     51       * Now ssh to the device and change into your NFS mounted directory to install the previously downloaded packages
     52{{{
     53cd /your_nfs_mount/swork/packages/
     54dpkg -i *
     55}}}
     56
    3757== Current Issues / TODO ==
    3858