Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 15 days 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 (almost 6 years ago)
- Default Branch: main
- Last Pushed: 2024-12-23T12:30:03.000Z (about 1 month ago)
- Last Synced: 2024-12-23T13:31:56.914Z (about 1 month 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 ![linux](https://github.com/PerlAlien/Alien-unzip/workflows/linux/badge.svg)
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.