15 lines
388 B
PHP
15 lines
388 B
PHP
<?php
|
|
|
|
class MariaDB104 extends PatchBase {
|
|
function __construct() {
|
|
parent::__construct('MariaDB Foundation', 'MariaDB', 'https://downloads.mariadb.org/');
|
|
$this->patch->setBranch('10.4');
|
|
}
|
|
function check() : bool {
|
|
if ($this->fetch('https://downloads.mariadb.com/MariaDB/mariadb-10.4/source/'))
|
|
return $this->parse('/mariadb-([\d\.]+)\.tar\.gz/');
|
|
return false;
|
|
}
|
|
}
|
|
|
|
?>
|