Sorry, I'm not going to compile a QT app from source. But should be just as straigtforward (if you are into compiling from source, that is):
- Code: Select all
# Get the old AppImage
wget -c "http://portablelinuxapps.org/GoldenDict%200.9.0/download"
# Extract the old AppImage to an AppDir
# (ArchiveMounter will be able to do this in the next version of Ubuntu)
sudo mount GoldenDict\ 0.9.0 /mnt -o loop
sudo cp -r /mnt GoldenDict.AppDir
sudo umount /mnt
sudo chown -R $USER GoldenDict.AppDir/
sudo chmod a+w GoldenDict.AppDir/
# Compile GoldenDict from GIT following the instructions on
# http://goldendict.org/download.php#building
# and replace goldendict-bin in the AppDir
# with the version just compiled
# Check whether the updated AppDir still works
./AppRun
# Run the AppDir through AppImageAssistant to create a new AppImage
AppImageAssistant\ 0.8
#
# Be sure to test the resulting AppImage on all supported distribution
# otherwise it will be rejected for inclusion on the site
#
# Update AppImage name to reflect the version number
If you decide to actually do this, be sure to leave a link to your work in the Labs section.