Add digiKam

This commit is contained in:
Steffen Lange 2021-12-14 13:18:25 +01:00
parent c49eb243e5
commit 52d5074d1c

14
modules/DigiKam.php Normal file
View file

@ -0,0 +1,14 @@
<?php
class DigiKam extends PatchBase {
function __construct() {
parent::__construct('digiKam Team', 'digiKam', 'https://www.digikam.org/download/');
}
function check() : bool {
if ($this->fetch('https://www.digikam.org/download/'))
return $this->parse('_//download\.kde\.org/stable/digikam/[\d\.]+/digiKam-([\d\.]+)-Win64\.exe\.mirrorlist_');
return false;
}
}
?>