Add Strawberry Perl

This commit is contained in:
Steffen Lange 2021-07-02 10:35:27 +02:00
parent 2ddfa7c822
commit e1ce0b1801

View file

@ -0,0 +1,14 @@
<?php
class StrawberryPerl extends PatchBase {
function __construct() {
parent::__construct('Adam Kennedy', 'Strawberry Perl', 'https://strawberryperl.com/');
}
function check() : bool {
if ($this->fetch('https://strawberryperl.com/'))
return $this->parse('_/download/[\d\.]+/strawberry-perl-([\d\.]+)-\d+bit\.msi_');
return false;
}
}
?>