logo

cve-client

CLI-based client / toolbox for CVE.org
commit: fdf7d1e60f75e3f2ecc419ff58e254800986b98a
parent 2efd47066ef9e758d9ed3603192d4b03cdb269ef
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date:   Wed,  6 Oct 2021 22:11:00 +0200

Introduce Makefile.PL

Diffstat:

A.gitignore5+++++
AMakefile.PL9+++++++++
Rcve-client.pl -> cve-client0
3 files changed, 14 insertions(+), 0 deletions(-)

diff --git a/.gitignore b/.gitignore @@ -0,0 +1,5 @@ +/blib +/Makefile +/MYMETA.json +/MYMETA.yml +/pm_to_blib diff --git a/Makefile.PL b/Makefile.PL @@ -0,0 +1,9 @@ +use ExtUtils::MakeMaker; + +WriteMakefile( + NAME => 'App::CveClient', + ABSTRACT => 'CLI-based client / toolbox for CVE.org', + AUTHOR => 'Haelwenn (lanodan) Monnier', + LICENSE => 'agpl_3', + EXE_FILES => ['cve-client'], +) diff --git a/cve-client.pl b/cve-client