summaryrefslogtreecommitdiff
path: root/epoc/createpkg.pl
blob: 39cd8c4666f4295d484e7047ff8306bc5bc776bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#!/usr/bin/perl

use File::Find;
use Cwd;

$VERSION="5.7";
$PATCH="1";
$EPOC_VERSION=27;


sub filefound {

  my $f = $File::Find::name;
    
  return if ( $f =~ /CVS|unicode|CPAN|ExtUtils|IPC|User|DB.pm|\.a$|\.ld$|\.exists$|\.pod$/i);
  my $back = $f;

  my $psiback = $back;

  $psiback =~ s|.*/lib/|\\perl\\lib\\$VERSION.$PATCH\\|;

  print OUT "\"$back\"-\"!:$psiback\"\n"  if ( -f $f );
}

open OUT,">perl.pkg";

print OUT "#{\"perl$VERSION\"},(0x100051d8),$PATCH,$EPOC_VERSION,0\n";
print OUT "\"" . cwd . "/Artistic.txt\"-\"\",FT,TA\n";
print OUT "\"" . cwd . "/perl\"-\"!:\\system\\programs\\perl.exe\"\n";

find(\&filefound, cwd.'/lib');
# print OUT "@\"G:\\lib\\stdlib.sis\",(0x0100002c3)\n";

open IN,  "<Artistic";
open OUT, ">Artistic.txt";
while (my $line = <IN>) {
  chomp $line;
  print OUT "$line\x13\x10";
}

close IN;
close OUT;