The link Download the MIC binary rpm for your distro: http://download.meego.com/tools is broken (404).
The link We will use 'default.ks' to create a typical MeeGo image: http://repo.meego.com/trunk/repo/ia32/os/image-config/default.ks is broken (404).
The link The official MeeGo .ks files are here: http://repo.meego.com/trunk/repo/ia32/os/image-config/ is broken (404).
To install the SDK on Debian Squeeze I had a couple issues:
The first issue was solved by forward-porting libmpfr1ldbl from Debian Lenny, if you adapt for your setup and actual versions:
# echo deb-src http://ftp2.de.debian.org/debian/ lenny main >> /etc/apt/sources.list # apt-get update [...] # apt-get source -b libmpfr1ldbl # dpkg -i libmpfr1ldbl_2.3.1.dfsg.1-2_amd64.deb # apt-get install meego-sdk
The second issue was easily solved with a bind mount:
# echo /usr/opt /opt bind defaults,bind 0 0 >> /etc/fstab # mkdir -p /opt /usr/opt # mount /opt
This has to be done before the previous step if you needed it. Do not forget to move the contents of /opt to /usr/opt if necessary.