-
-
Notifications
You must be signed in to change notification settings - Fork 482
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Trac #29557: Add script package _recommended and generate "recommende…
…d system packages" info Let's improve the installation-from-source documentation regarding the "recommended system packages" for 9.1. - `build/pkgs/_recommended` - records additional recommended packages such as texlive-xetex (see https://wiki.sagemath.org/prerequisites/Ubuntu); also texinfo (from #22191) (from #29124) URL: https://trac.sagemath.org/29557 Reported by: mkoeppe Ticket author(s): Matthias Koeppe, John Palmieri Reviewer(s): John Palmieri, Matthias Koeppe
- Loading branch information
Showing
7 changed files
with
45 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
= _recommended = | ||
|
||
== Description == | ||
|
||
Script package representing a list of system packages recommended | ||
to be installed for additional functionality. |
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# From https://wiki.sagemath.org/prerequisitesUbuntu | ||
|
||
# to generate pdf documentation | ||
texlive-generic-extra | ||
# to convert Jupyter notebooks to pdf | ||
texlive-xetex | ||
# to generate pdf documentation | ||
latexmk | ||
# to convert Jupyter notebooks to pdf | ||
pandoc | ||
# to render text with LaTeX in Matplotlib | ||
dvipng | ||
# to run the Jmol 3D viewer from the console and generate images for 3D plots in the documentation | ||
default-jdk | ||
# to produce animations | ||
ffmpeg | ||
libavdevice-dev |
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# To convert Jupyter notebooks to pdf: | ||
pandoc | ||
# To produce animations: | ||
ffmpeg | ||
imagemagick | ||
# Homebrew's texinfo can be used to build the info files for ecl and | ||
# maxima but the OS X default version of texinfo cannot. | ||
texinfo |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
SAGE_SPKG_CONFIGURE([_recommended], [ | ||
sage_spkg_install__recommended=yes | ||
]) |
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
#! /usr/bin/env bash | ||
# Nothing to do |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
optional |
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