cstryon
|
2010-10-26
, 01:35
|
Posts: 206 |
Thanked: 46 times |
Joined on Mar 2010
|
#131
|
|
2010-10-27
, 08:55
|
|
Posts: 92 |
Thanked: 74 times |
Joined on Nov 2008
@ Indonesia
|
#132
|
The Following User Says Thank You to coredumb For This Useful Post: | ||
|
2010-10-27
, 21:13
|
Posts: 2 |
Thanked: 0 times |
Joined on Oct 2010
|
#133
|
|
2010-10-27
, 21:21
|
Posts: 2,225 |
Thanked: 3,822 times |
Joined on Jun 2010
@ Florida
|
#134
|
|
2010-10-28
, 10:04
|
|
Posts: 92 |
Thanked: 74 times |
Joined on Nov 2008
@ Indonesia
|
#135
|
The Following User Says Thank You to coredumb For This Useful Post: | ||
|
2011-08-23
, 09:34
|
|
Posts: 60 |
Thanked: 104 times |
Joined on Dec 2009
|
#136
|
#create a folder for all the work mkdir digia cd digia #create build folder mkdir build #download the package wget http://repository.maemo.org/extras-devel/pool/fremantle/non-free/d/digiaatweb/digiaatweb_3.0.2_armel.deb #extract all needed files mkdir -p extract/DEBIAN dpkg-deb -x digiaatweb_3.0.2_armel.deb extract/ dpkg-deb -e digiaatweb_3.0.2_armel.deb extract/DEBIAN #remove the packaged libQtWebKit.so.4.7.0 #I commented out this line to avoid mistakes with dangerous remove-command (you should know what to do): #rm -rf extract/usr/lib # Then I simply commented out those link-lines in the file # extract/DEBIAN/postinst #ln -sf /usr/lib/libQtWebKit.so.4.7.0 /usr/lib/libQtWebKit.so #ln -sf /usr/lib/libQtWebKit.so.4.7.0 /usr/lib/libQtWebKit.so.4 #ln -sf /usr/lib/libQtWebKit.so.4.7.0 /usr/lib/libQtWebKit.so.4.7 #After this create a new .deb in folder "digia/build" mkdir build dpkg-deb -b extract/ build/ #install new package (Infos appear on GUI) dpkg -i build/digiaatweb_3.0.2_armel.deb
The Following User Says Thank You to meShell For This Useful Post: | ||