forked from e16/e16
1
0
Fork 0

now we have something that kinda does what I was looking for.

Whee.


SVN revision: 912
This commit is contained in:
Mandrake 1999-10-20 18:22:24 +00:00
parent ab91be0690
commit eeb7042821
2 changed files with 7 additions and 4 deletions

View File

@ -54,7 +54,7 @@ cd "$THEDIR"
cd "$THEDIR/man"
cat ../dox/E-docs/MAIN | ./e2mp > enlightenment.pod
pod2man enlightenment.pod > enlightenment.1
pod2man ./enlightenment.pod > enlightenment.1
cd "$THEDIR"

View File

@ -1,6 +1,10 @@
#!/usr/bin/perl
print "=pod\n\n";
print "=pod\n\n\n\n";
print "=head1 NAME\n\n\nEnlightenment\n\n";
print "=head1 DESCRIPTION\n\n\n";
undef $/;
$_ = <>;
@ -36,8 +40,7 @@ sub maketitle {
s/\n/ /g;
s/^\s+//;
s/\s+$//;
s/^/=head1 /;
s/$/\n\n/;
s/^/\n\n/;
return $_;
}