ManUtils: Move, use ExtUtils::MakeMaker and get rid of AnyEvent

I mean, I like AnyEvent, but this can be done with core modules as well
(albeit somewhat more verbose and error-prone...)
This commit is contained in:
Yorhel 2025-02-24 16:27:07 +01:00
parent 2f33e7f4b5
commit 682321d1be
9 changed files with 92 additions and 106 deletions

10
ManUtils/Makefile.PL Normal file
View file

@ -0,0 +1,10 @@
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'ManUtils',
VERSION_FROM => 'ManUtils.pm',
LICENSE => 'mit',
NO_MYMETA => 1,
MIN_PERL_VERSION => 'v5.36',
LDFROM => 'ManUtils.o ../web/target/release/libweb.a -lpthread',
);