Add Ardour

This commit is contained in:
Steffen Lange 2021-10-26 11:04:04 +02:00
parent e2379502aa
commit 8c56cd954f

14
modules/Ardour.php Normal file
View file

@ -0,0 +1,14 @@
<?php
class Ardour extends PatchBase {
function __construct() {
parent::__construct('Paul Davis', 'Ardour', 'https://ardour.org/download.html');
}
function check() : bool {
if ($this->fetch('https://community.ardour.org/download'))
return $this->parse('/set_release\("([\d\.]+)"\)/');
return false;
}
}
?>