File: wrapper.pl

package info (click to toggle)
libalien-build-perl 2.84-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,116 kB
  • sloc: perl: 10,350; ansic: 134; sh: 66; makefile: 2
file content (16 lines) | stat: -rw-r--r-- 331 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use strict;
use warnings;
use YAML qw( Dump );
use Alien::Base::Wrapper ();

# Print out the Module::Build and ExtUtils::MakeMaker
# for a list of aliens, using Alien::Base::Wrapper

Alien::Base::Wrapper->import(@ARGV, '!export');

print Dump(
  mb => [Alien::Base::Wrapper->mb_args],
  mm => [Alien::Base::Wrapper->mm_args],
);