Add Octave
This commit is contained in:
parent
5f387ae247
commit
cd3d06f720
1 changed files with 14 additions and 0 deletions
14
modules/Octave.php
Normal file
14
modules/Octave.php
Normal file
|
|
@ -0,0 +1,14 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
class Octave extends PatchBase {
|
||||||
|
function __construct() {
|
||||||
|
parent::__construct('John W. Eaton', 'GNU Octave', 'https://www.gnu.org/software/octave/download');
|
||||||
|
}
|
||||||
|
function check() : bool {
|
||||||
|
if ($this->fetch('https://www.gnu.org/software/octave/download'))
|
||||||
|
return $this->parse('_//ftpmirror\.gnu\.org/octave/windows/octave-([\d\.]+)-w64-installer\.exe_');
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
?>
|
||||||
Loading…
Add table
Add a link
Reference in a new issue