File: Makefile.PL

package info (click to toggle)
libimage-exif-perl 2.01-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, trixie
  • size: 412 kB
  • sloc: ansic: 5,025; perl: 375; makefile: 8
file content (12 lines) | stat: -rw-r--r-- 385 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
use ExtUtils::MakeMaker;
use 5.008;
my $module_file = 'lib/Image/EXIF.pm';
WriteMakefile(
    NAME          => 'Image::EXIF',
    VERSION_FROM  => $module_file,
    PREREQ_PM     => {},
    ABSTRACT_FROM => $module_file,
    AUTHOR        => 'sergey s prozhogin <ccpro@rrelaxo.org.ru>',
    OBJECT        => '$(O_FILES)',
    XS            => { 'Image-EXIF.xs' => 'Image-EXIF.c' },
);