Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kiwiroy/alien-libdeflate
Fetch/build/stash the libdeflate headers and libs for libdeflate
https://github.com/kiwiroy/alien-libdeflate
alien libdeflate perl
Last synced: 27 days ago
JSON representation
Fetch/build/stash the libdeflate headers and libs for libdeflate
- Host: GitHub
- URL: https://github.com/kiwiroy/alien-libdeflate
- Owner: kiwiroy
- Created: 2018-05-04T19:42:21.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-12-28T20:27:11.000Z (almost 2 years ago)
- Last Synced: 2024-09-29T19:01:26.300Z (about 1 month ago)
- Topics: alien, libdeflate, perl
- Language: Perl
- Homepage: https://metacpan.org/pod/Alien::libdeflate
- Size: 29.3 KB
- Stars: 0
- Watchers: 3
- Forks: 2
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: Changes
Awesome Lists containing this project
README
# NAME
Alien::libdeflate - Fetch/build/stash the libdeflate headers and libs for
[libdeflate](https://github.com/ebiggers/libdeflate)# SYNOPSIS
In your `Makefile.PL` with [ExtUtils::MakeMaker](https://metacpan.org/pod/ExtUtils%3A%3AMakeMaker).
use Alien::libdeflate;
use ExtUtils::MakeMaker;
use Alien::Base::Wrapper qw( Alien::libdeflate !export );
use Config;WriteMakefile(
# ...
Alien::Base::Wrapper->mm_args,
# ...
);In your script or module.
use Alien::libdeflate;
use Env qw( @PATH );unshift @PATH, Alien::libdeflate->bin_dir;
# DESCRIPTION
Download, build, and install the libdeflate C headers and libraries into a
well-known location, `Alien::libdeflate->dist_dir`, from whence other
packages can make use of them.The version installed will be the latest release on the master branch from
the libdeflate GitHub [repository](https://github.com/ebiggers/libdeflate).## Influential Environment Variables
- ALIEN\_LIBDEFLATE\_PROBE\_CFLAGS
If _libdeflate_ is installed system wide in an alternate location than the
default search paths, set this variable to add the **include** directory using
`-I/path/to/system/libdeflate/include`- ALIEN\_LIBDEFLATE\_PROBE\_LDFLAGS
If _libdeflate_ is installed system wide in an alternate location than the
default search paths, set this variable to add the **lib** directory using
`-L/path/to/system/libdeflate/lib`# AUTHORS
Roy Storey ([email protected])
Zakariyya Mughal