mirror of
https://github.com/zeux/pugixml.git
synced 2024-12-28 06:10:55 +08:00
7d24b9b565
git-svn-id: http://pugixml.googlecode.com/svn/trunk@607 99668b35-9821-0410-8761-19e4c4f06640
61 lines
1.2 KiB
Perl
61 lines
1.2 KiB
Perl
#!/usr/bin/perl
|
|
|
|
use Archive::Tar;
|
|
use Archive::Zip;
|
|
|
|
my $target = shift @ARGV;
|
|
my @sources = @ARGV;
|
|
|
|
my $zip = $target =~ /\.zip$/;
|
|
|
|
my $arch = $zip ? Archive::Zip->new : Archive::Tar->new;
|
|
|
|
for $source (sort {$a cmp $b} @sources)
|
|
{
|
|
my $contents = &readfile_contents($source);
|
|
my $meta = &readfile_meta($source);
|
|
|
|
if ($zip)
|
|
{
|
|
my $path = $source;
|
|
$arch->addDirectory($path) if $path =~ s/\/[^\/]+$/\// && !defined($arch->memberNamed($path));
|
|
|
|
my $member = $arch->addString($contents, $source);
|
|
|
|
$member->desiredCompressionMethod(COMPRESSION_DEFLATED);
|
|
$member->desiredCompressionLevel(9);
|
|
|
|
$member->setLastModFileDateTimeFromUnix($$meta{mtime});
|
|
}
|
|
else
|
|
{
|
|
# tgz releases are for Unix people, Unix people like Unix newlines
|
|
$contents =~ s/\r//g if (-T $source);
|
|
|
|
$arch->add_data($source, $contents, $meta);
|
|
}
|
|
}
|
|
|
|
$zip ? $arch->overwriteAs($target) : $arch->write($target, 9);
|
|
|
|
sub readfile_contents
|
|
{
|
|
my $file = shift;
|
|
|
|
open FILE, $file or die "Can't open $file: $!";
|
|
binmode FILE;
|
|
my @contents = <FILE>;
|
|
close FILE;
|
|
|
|
return join('', @contents);
|
|
}
|
|
|
|
sub readfile_meta
|
|
{
|
|
my $file = shift;
|
|
|
|
my ($dev, $ino, $mode, $nlink, $uid, $gid, $rdev, $size, $atime, $mtime, $ctime, $blksize, $blocks) = stat($file);
|
|
|
|
return {mtime => $mtime};
|
|
}
|