manned/ManUtils/Makefile.PL
Yorhel 682321d1be 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...)
2025-02-24 19:00:09 +01:00

10 lines
247 B
Perl

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',
);