File: mkppm.bat

package info (click to toggle)
perl-tk 1%3A800.015-1
  • links: PTS
  • area: main
  • in suites: potato
  • size: 17,636 kB
  • ctags: 18,270
  • sloc: ansic: 195,135; perl: 37,385; makefile: 4,380; sh: 2,286; yacc: 762
file content (34 lines) | stat: -rwxr-xr-x 477 bytes parent folder | download
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
@perl -Sx %0 "%*"
@goto endofperl
#!perl -w
open(PPD,"Tk.ppd") || die "Cannot open Tk.ppd:$!";
my $tar;
while (<PPD>)
 {
  if (/<CODEBASE HREF="(.*)"/)
   {
    $tar = $1;
    last;
   } 
 }
close(PPD);
if (defined $tar)
 {
  if ($tar =~ m#(.*)/#)
   {
    mkdir($1,0777);
   }
  $tar =~ s/\.gz$//; 
  if (system("tar","cvf",$tar,'blib') == 0)
   {
    if (system("gzip","-9",$tar) == 0)
     {
     }
   } 
  else
   {
    die "Cannot tar $tar\n"
   }  
 }
__END__
:endofperl