Skip to content

Commit

Permalink
make file
Browse files Browse the repository at this point in the history
  • Loading branch information
bradfitz committed Jul 30, 2005
1 parent 7d770a3 commit 81f2850
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions Makefile.PL
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
#!/usr/bin/perl
#
# Perl Makefile for Perlbal
# $Id$
#
# Invoke with 'perl Makefile.PL'
#
# See ExtUtils::MakeMaker (3) for more information on how to influence
# the contents of the Makefile that is written
#

use ExtUtils::MakeMaker;

WriteMakefile(
NAME => 'Sys::Syscall',
VERSION_FROM => 'lib/Sys/Syscall.pm',
AUTHOR => 'Brad Fitzpatrick <brad@danga.com>',
ABSTRACT => 'Invoke system calls that are otherwise difficult to do from Perl.',

PREREQ_PM => {
'POSIX' => 0,
'Test::More' => 0,
},
dist => {
# CI => "cvs commit",
# RCS_LABEL => 'cvs tag RELEASE_$(VERSION_SYM)',
SUFFIX => ".gz",
DIST_DEFAULT => 'all tardist',
COMPRESS => "gzip",
},
);


0 comments on commit 81f2850

Please sign in to comment.