https://github.com/perlalien/alien-unzip
Find or build Info-ZIP unzip
https://github.com/perlalien/alien-unzip
alien decompression perl pkzip unzip zip
Last synced: over 1 year ago
JSON representation
Find or build Info-ZIP unzip
- Host: GitHub
- URL: https://github.com/perlalien/alien-unzip
- Owner: PerlAlien
- Created: 2019-02-22T11:29:28.000Z (over 7 years ago)
- Default Branch: main
- Last Pushed: 2024-12-23T12:30:03.000Z (over 1 year ago)
- Last Synced: 2025-01-22T09:11:58.395Z (over 1 year ago)
- Topics: alien, decompression, perl, pkzip, unzip, zip
- Language: Perl
- Homepage:
- Size: 18.6 KB
- Stars: 0
- Watchers: 5
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: Changes
Awesome Lists containing this project
README
# Alien::unzip 
Find or build Info-ZIP unzip
# SYNOPSIS
```perl
use Alien::unzip
use Env qw( @PATH );
# Add unzip to the PATH if it isn't there already
push @PATH, Alien::unzip->bin_dir;
```
# DESCRIPTION
This is an alien that provides Info-ZIP unzip. It is useful for building
other aliens in `share` mode. Another option is to use [Archive::Zip](https://metacpan.org/pod/Archive::Zip),
but that module seems to be quite unreliable in practice.
# SEE ALSO
- [Alien](https://metacpan.org/pod/Alien)
- [Alien::Build](https://metacpan.org/pod/Alien::Build)
# AUTHOR
Graham Ollis
# COPYRIGHT AND LICENSE
This software is copyright (c) 2019 by Graham Ollis.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.