You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
probonopd 6cd5ebf012 Update README.md 9 years ago
linuxdeployqt Basic AppImage generation if AppImageAssistant is on the $PATH 9 years ago
shared Basic AppImage generation if AppImageAssistant is on the $PATH 9 years ago
.gitignore Initial commit 9 years ago
README.md Update README.md 9 years ago
linuxdeployqt.pro Rename to linuxdeployqt 9 years ago

README.md

linuxdeployqt

linuxdeployqt takes an application as input and makes it self-contained by copying in the Qt libraries and plugins that the application uses into an AppDir bundle. This can optionally be put into an AppImage. It is based on macdeployqt in the tools applications of the Qt Toolkit.

Known issues

  • This may not be fully working yet. Use with care, run with maximum verbosity, submit issues and pull requests. Help is appreciated
  • Some functions may still refer to macOS specifics. These need to be converted over to their Linux counterparts or deleted
  • Scan for QML imports has not been tested yet

Installation

  • Open in Qt Creator and build
  • Build and install patchelf (a small utility to modify the dynamic linker and RPATH of ELF executables; similar to install_name_tool on macOS). To learn more about this, see http://blog.qt.io/blog/2011/10/28/rpath-and-runpath/
  • Download AppImageAssistant and put it into your $PATH, e.g., into /usr/local/bin. Make sure it is renamed to AppImageAssistant and is chmod a+x

Usage

Usage: linuxdeployqt app-binary [options]

Options:
   -verbose=<0-3>     : 0 = no output, 1 = error/warning (default), 2 = normal, 3 = debug
   -no-plugins        : Skip plugin deployment
   -appimage          : Create an AppImage
   -no-strip          : Don't run 'strip' on the binaries
   -executable=<path> : Let the given executable use the deployed libraries too
   -qmldir=<path>     : Scan for QML imports in the given path
   -always-overwrite  : Copy files even if the target file exists
   -libpath=<path>    : Add the given path to the library search path

linuxdeployqt takes an application as input and makes it
self-contained by copying in the Qt libraries and plugins that
the application uses.