Skip to content

wxMaxima-developers/docker-wxmaxima

Repository files navigation

Appimage build for wxMaxima

What is it?

An AppImage is a a-complete-app-in-one-executable-file build of an application.

How to download and use it

Building the Appimage yourself

To build the Appimage, run the following command:

$ docker build -t wxmaxima .

This will build all dependenecies and the wxMaxima application itself. After the build has completed, run the following command to copy the Appimage from the container:

$ docker run wxmaxima cat wxmaxima-x86_64.AppImage > wxmaxima-x86_64.AppImage

Finally, set the executable flag so that the executable can be run:

$ chmod +x wxmaxima-x86_64.AppImage

All of these commands have been combined to a shell script,

$ build.sh

Making an official release of the Appimage

In theory all that has to be made in order to generate an official release including a binary file is just creating a tag in this git repo. The rest is done by travis-ci.