Skip to content

Latest commit

 

History

History
23 lines (12 loc) · 1.08 KB

README.md

File metadata and controls

23 lines (12 loc) · 1.08 KB

deploy-linux.sh

POSIX(ish) shell script that deploys dependencies for AppImages, similar to linuxdeploy, linuxdeploy-qt, go-appimage and others.

Automatically deploys Qt or GTK.

USAGE EXAMPLES:

./deploy-linux.sh /path/to/binary Assumes the binary is on an AppDir structure and will deploy libs and get the needed files.

./deploy-linux.sh /path/to/binary /path/to/AppDir Will create the AppDir, deploy libs and get the needed files.

SKIP="libA.so libB.so" ./deploy-linux.sh /path/to/binary /path/to/AppDir Ignores given libraries from being deployed.

USAGE: EXTRA="libA.so libB.so randombin" ./deploy-linux.sh /path/to/binary /path/to/AppDir Deploys extra libraries and/or binaries.

DEPLOY_AL=1 ./deploy-linux.sh /path/to/binary /path/to/AppDir Will ignore the excludelist and deploy ALL libraries.

Credits

Forked from https://github.com/lat9nq/deploy

AppRun was taken from go-appimage and simplified.