Add Octave

This commit is contained in:
Steffen Lange 2021-01-19 16:52:47 +01:00
parent 5f387ae247
commit cd3d06f720

14
modules/Octave.php Normal file
View 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;
}
}
?>