Compression.pm 357 B

123456789101112131415
  1. package Dpkg::Compression;
  2. use strict;
  3. use warnings;
  4. use base qw(Exporter);
  5. our @EXPORT = qw(@comp_supported %comp_supported %comp_ext $comp_regex);
  6. our @comp_supported = qw(gzip bzip2 lzma);
  7. our %comp_supported = map { $_ => 1 } @comp_supported;
  8. our %comp_ext = ( gzip => 'gz', bzip2 => 'bz2', lzma => 'lzma' );
  9. our $comp_regex = '(?:gz|bz2|lzma)';
  10. 1;