summaryrefslogtreecommitdiff
path: root/http/Makefile.PL
diff options
context:
space:
mode:
authorTyler Hoang <tyler@tylerhoang.xyz>2024-01-13 01:10:07 -0800
committerTyler Hoang <tyler@tylerhoang.xyz>2024-01-13 01:10:07 -0800
commitc39de958ace0d6dc0abdf5667bb50a43d9930927 (patch)
treef756c50e9ed36a79b76eef911969cd76285093ea /http/Makefile.PL
initial
Diffstat (limited to 'http/Makefile.PL')
-rw-r--r--http/Makefile.PL17
1 files changed, 17 insertions, 0 deletions
diff --git a/http/Makefile.PL b/http/Makefile.PL
new file mode 100644
index 0000000..441bf8f
--- /dev/null
+++ b/http/Makefile.PL
@@ -0,0 +1,17 @@
+use v5.36;
+
+use ExtUtils::MakeMaker;
+
+WriteMakefile(
+ NAME => 'sakisafe',
+ CONFIGURE_REQUIRES => {
+ "Mojolicious" => 0,
+ "List::MoreUtils" => 0,
+ "Term::ANSIColor" => 0,
+ "MIME::Types" => 0,
+ "Path::Tiny" => 0,
+ "Mojolicious::Plugin::RenderFile" => 0,
+ "Mojolicious::Routes::Pattern" => 0
+ },
+ EXE_FILES => ['sakisafe.pl']
+);