mirror of
https://src.fedoraproject.org/rpms/sagemath.git
synced 2025-04-04 04:28:51 -04:00
Also: - Create the sagemath-data-combinatorial_designs subpackage. - Create the sagemath-notebook-export subpackage. - Unbundle the LaTeX makecmds style. - Install LaTeX style files in a more canonical place.
13 lines
237 B
Bash
13 lines
237 B
Bash
#!/bin/bash
|
|
type -atp java
|
|
OUT=$?
|
|
#echo $OUT
|
|
if [ $OUT -eq 0 ]; then
|
|
#found java now check 1.5<=version<=1.7
|
|
#version >1.7 may be OK just not checked yet.
|
|
java -version 2>&1|grep version.*[1]\.[567]
|
|
else
|
|
exit 1
|
|
fi
|
|
#OUT=$?
|
|
#echo $OUT
|