aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal/rosa/perl.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/rosa/perl.go')
-rw-r--r--internal/rosa/perl.go24
1 files changed, 24 insertions, 0 deletions
diff --git a/internal/rosa/perl.go b/internal/rosa/perl.go
index 3800d18b..43c85114 100644
--- a/internal/rosa/perl.go
+++ b/internal/rosa/perl.go
@@ -382,3 +382,27 @@ func init() {
ID: 3549,
}
}
+
+func (t Toolchain) newPerlTestCmd() (pkg.Artifact, string) {
+ const (
+ version = "1.09"
+ checksum = "gpGUwyC9IozDiYSgW_kXARNfXsTPFa6cTowJmmCBbPqcs2-pONZca_SB06FGy-7H"
+ )
+ return t.newViaPerlMakeMaker("Test::Cmd", version, newFromCPAN(
+ "NEILB",
+ "Test-Cmd",
+ version,
+ checksum,
+ ), nil), version
+}
+func init() {
+ artifactsM[PerlTestCmd] = Metadata{
+ f: Toolchain.newPerlTestCmd,
+
+ Name: "perl-Test::Cmd",
+ Description: "portable testing of commands and scripts",
+ Website: "https://metacpan.org/release/Test-Cmd",
+
+ ID: 6014,
+ }
+}