mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 04:05:49 +00:00
123 lines
2.5 KiB
Perl
123 lines
2.5 KiB
Perl
#!/perl
|
|
|
|
# make-jars [-d <destPath>] < <manifest.jr>
|
|
|
|
use Getopt::Std;
|
|
use Cwd;
|
|
|
|
sub JarIt
|
|
{
|
|
my ($jarfile, $args) = @_;
|
|
system "zip -u $jarfile $args\n";
|
|
my $cwd = cwd();
|
|
print "+++ jarred $cwd => $jarfile\n";
|
|
}
|
|
|
|
sub MkDirs
|
|
{
|
|
my ($path) = @_;
|
|
if ($path =~ /([\w\d.\-]+)[\\\/](.*)/) {
|
|
my $dir = $1;
|
|
$path = $2;
|
|
if (!-e $dir) {
|
|
mkdir($dir, 0777) || die "error: can't create '$dir': $!";
|
|
}
|
|
chdir $dir;
|
|
MkDirs($path);
|
|
chdir "..";
|
|
}
|
|
else {
|
|
my $dir = $path;
|
|
if ($dir eq "") { return 0; }
|
|
if (!-e $dir) {
|
|
mkdir($dir, 0777) || die "error: can't create '$dir': $!";
|
|
}
|
|
}
|
|
}
|
|
|
|
sub CopyFile
|
|
{
|
|
my ($from, $to) = @_;
|
|
open(OUT, ">$to") || die "error: can't open '$to': $!";
|
|
open(IN, "<$from") || die "error: can't open '$from': $!";
|
|
while (<IN>) {
|
|
print OUT $_;
|
|
}
|
|
close(IN) || die "error: can't close '$from': $!";
|
|
close(OUT) || die "error: can't close '$to': $!";
|
|
}
|
|
|
|
sub EnsureFileInDir
|
|
{
|
|
my ($destPath, $srcPath) = @_;
|
|
|
|
if (!-e $destPath) {
|
|
my $dir = "";
|
|
my $file;
|
|
if ($destPath =~ /([\w\d.\-\\\/]+)[\\\/]([\w\d.\-]+)/) {
|
|
$dir = $1;
|
|
$file = $2;
|
|
}
|
|
else {
|
|
$file = $destPath;
|
|
}
|
|
|
|
if ($srcPath) {
|
|
$file = $srcPath;
|
|
}
|
|
|
|
if (!-e $file) {
|
|
die "error: file '$file' doesn't exist\n";
|
|
}
|
|
MkDirs($dir);
|
|
CopyFile($file, $destPath);
|
|
return 1;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
getopt("d:o:");
|
|
|
|
my $destPath = ".";
|
|
if (defined($opt_d)) {
|
|
$destPath = $opt_d;
|
|
}
|
|
|
|
while (<>) {
|
|
chomp;
|
|
start:
|
|
if (/^([\w\d.\-\\\/]+)\:\s*$/) {
|
|
my $jarfile = "$destPath/$1";
|
|
|
|
my $args = "";
|
|
while (<>) {
|
|
if (/^\s+([\w\d.\-\\\/]+)\s*(\([\w\d.\-\\\/]+\))?$\s*/) {
|
|
my $dest = $1;
|
|
my $srcPath = $2;
|
|
|
|
if ( $srcPath ) {
|
|
$srcPath = substr($srcPath,1,-1);
|
|
}
|
|
|
|
EnsureFileInDir($dest, $srcPath);
|
|
$args = "$args$dest ";
|
|
} elsif (/^\s*$/) {
|
|
# end with blank line
|
|
last;
|
|
} else {
|
|
JarIt($jarfile, $args);
|
|
goto start;
|
|
}
|
|
}
|
|
JarIt($jarfile, $args);
|
|
|
|
} elsif (/^\s*\#.*$/) {
|
|
# skip comments
|
|
} elsif (/^\s*$/) {
|
|
# skip blank lines
|
|
} else {
|
|
close;
|
|
die "bad jar rule head at: $_";
|
|
}
|
|
}
|