NAME Alien::libdeflate - Fetch/build/stash the libdeflate headers and libs for libdeflate SYNOPSIS In your "Makefile.PL" with ExtUtils::MakeMaker. use Alien::libdeflate; use ExtUtils::MakeMaker; use Alien::Base::Wrapper qw( Alien::libdeflate !export ); use Config; WriteMakefile( # ... Alien::Base::Wrapper->mm_args, # ... ); In your script or module. use Alien::libdeflate; use Env qw( @PATH ); unshift @PATH, Alien::libdeflate->bin_dir; DESCRIPTION Download, build, and install the libdeflate C headers and libraries into a well-known location, "Alien::libdeflate->dist_dir", from whence other packages can make use of them. The version installed will be the latest release on the master branch from the libdeflate GitHub repository . AUTHOR kiwiroy