3bebad9280
A Perl IRC Statistics Generator PR: 34829 Submitted by: Peter Lowe <pgl@plig.net>
16 lines
194 B
Bash
16 lines
194 B
Bash
#!/bin/sh
|
|
|
|
cd $WRKSRC
|
|
|
|
cat <<EOMAKEFILE>>Makefile.PL
|
|
use ExtUtils::MakeMaker;
|
|
WriteMakefile(
|
|
NAME => 'Pisg',
|
|
VERSION => '0.34',
|
|
);
|
|
EOMAKEFILE
|
|
|
|
mv modules lib
|
|
mv pisg.pl pisg
|
|
touch Makefile
|