View Single Post
Niwakame's Avatar
Posts: 120 | Thanked: 126 times | Joined on Nov 2011 @ Germany
#67
Please try to download it again. Maybe it is corrupted. It opens fine for me, so aegis shouldn't reject you with an invalid deb archive error.

As an alternative:

Code:
#!/bin/sh

INSTALL_DIR=/etc/apt
if [ ! -e /$INSTALL_DIR/sources.list ]; then
        echo Copying sources.list..
        echo "deb http://harmattan-dev.nokia.com/ harmattan/sdk free non-free" >> $INSTALL_DIR/sources.list
        echo "deb-src http://harmattan-dev.nokia.com/ harmattan/sdk free" >> $INSTALL_DIR/sources.list
        echo "deb http://harmattan-dev.nokia.com/ harmattan/41667a5bd857be02f487c2ce806fbf85 nokia-binaries" >> $INSTALL_DIR/sources.list
fi
this is the postinstall script from the above mentioned package.
save this to a file "enablerepo" or something, upload to phone
and then as root
Code:
chmod +x enablerepo
./enablerepo

Last edited by Niwakame; 2011-12-08 at 22:11.
 

The Following User Says Thank You to Niwakame For This Useful Post: