mirror of
https://github.com/stephenenelson/convert-binhex.git
synced 2024-11-22 02:30:55 +00:00
21 lines
506 B
Perl
21 lines
506 B
Perl
#!/usr/bin/perl
|
|
use ExtUtils::MakeMaker;
|
|
|
|
#------------------------------------------------------------
|
|
# Makefile:
|
|
#------------------------------------------------------------
|
|
|
|
# Write the Makefile:
|
|
WriteMakefile(
|
|
NAME => 'Convert::BinHex',
|
|
VERSION_FROM => "./lib/Convert/BinHex.pm",
|
|
DISTNAME => "Convert-BinHex",
|
|
EXE_FILES => [@EXES],
|
|
'dist' => {
|
|
PREOP => "cd docs ; make",
|
|
COMPRESS => 'gzip',
|
|
SUFFIX => 'gz',
|
|
}
|
|
);
|
|
|