-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This repo should now automagically tell travis to compile an all-in-o…
…ne-package for maxima.
- Loading branch information
1 parent
e21ad93
commit 66a716f
Showing
9 changed files
with
20 additions
and
66 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/bin/sh | ||
docker build -t wxmaxima . | ||
docker run wxmaxima cat wxmaxima-x86_64.AppImage > wxmaxima-x86_64.AppImage | ||
chmod +x wxmaxima-x86_64.AppImage | ||
docker build -t maxima . | ||
docker run maxima cat maxima-x86_64.AppImage > maxima-x86_64.AppImage | ||
chmod +x maxima-x86_64.AppImage |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,21 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<component type="desktop-application"> | ||
<id>com.dhsdevelopments.wxmaxima-devel</id> | ||
<id>com.dhsdevelopments.maxima-devel</id> | ||
<metadata_license>MIT</metadata_license> | ||
<project_license>MIT</project_license> | ||
<name>wxmaxima</name> | ||
<summary>wxmaxima</summary> | ||
<name>maxima</name> | ||
<summary>maxima</summary> | ||
<description> | ||
<p>Maxima is a system for the manipulation of symbolic and numerical expressions, including differentiation, integration, Taylor series, Laplace transforms, ordinary differential equations, systems of linear equations, polynomials, sets, lists, vectors, matrices and tensors. Maxima yields high precision numerical results by using exact fractions, arbitrary-precision integers and variable-precision floating-point numbers. Maxima can plot functions and data in two and three dimensions.</p> | ||
</description> | ||
<launchable type="desktop-id">wxmaxima.desktop</launchable> | ||
<url type="homepage">https://wxmaxima-developers.github.io/wxmaxima/</url> | ||
<launchable type="desktop-id">maxima.desktop</launchable> | ||
<url type="homepage">https://maxima-developers.github.io/maxima/</url> | ||
<screenshots> | ||
<screenshot type="default"> | ||
<image>https://wxmaxima-developers.github.io/wxmaxima/images/linux_1.jpg</image> | ||
<image>https://maxima-developers.github.io/maxima/images/linux_1.jpg</image> | ||
</screenshot> | ||
</screenshots> | ||
<provides> | ||
<id>wxmaxima.desktop</id> | ||
<id>maxima.desktop</id> | ||
</provides> | ||
</component> |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,5 @@ | ||
#!/bin/sh | ||
|
||
maxima_build='tags\/5.43.0' | ||
wxmaxima_build='Version-20.03.1' | ||
|
||
sed -i -e "s/ENV maxima_build .*/ENV maxima_build $maxima_build/" Dockerfile | ||
sed -i -e "s/ENV wxmaxima_build .*/ENV wxmaxima_build $wxmaxima_build/" Dockerfile |