{"id":15018771,"url":"https://github.com/kiwiroy/alien-libdeflate","last_synced_at":"2026-03-15T09:10:15.714Z","repository":{"id":32300961,"uuid":"132182037","full_name":"kiwiroy/alien-libdeflate","owner":"kiwiroy","description":"Fetch/build/stash the libdeflate headers and libs for libdeflate","archived":false,"fork":false,"pushed_at":"2022-12-28T20:27:11.000Z","size":30,"stargazers_count":0,"open_issues_count":3,"forks_count":2,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-12-26T20:59:05.246Z","etag":null,"topics":["alien","libdeflate","perl"],"latest_commit_sha":null,"homepage":"https://metacpan.org/pod/Alien::libdeflate","language":"Perl","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/kiwiroy.png","metadata":{"files":{"readme":"README.md","changelog":"Changes","contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-05-04T19:42:21.000Z","updated_at":"2022-05-14T05:33:12.000Z","dependencies_parsed_at":"2023-01-14T20:56:12.053Z","dependency_job_id":null,"html_url":"https://github.com/kiwiroy/alien-libdeflate","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/kiwiroy/alien-libdeflate","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kiwiroy%2Falien-libdeflate","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kiwiroy%2Falien-libdeflate/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kiwiroy%2Falien-libdeflate/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kiwiroy%2Falien-libdeflate/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kiwiroy","download_url":"https://codeload.github.com/kiwiroy/alien-libdeflate/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kiwiroy%2Falien-libdeflate/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30539607,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-15T07:17:37.589Z","status":"ssl_error","status_checked_at":"2026-03-15T07:17:31.738Z","response_time":61,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["alien","libdeflate","perl"],"created_at":"2024-09-24T19:52:26.232Z","updated_at":"2026-03-15T09:10:15.665Z","avatar_url":"https://github.com/kiwiroy.png","language":"Perl","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv\u003e\n    \u003ca href=\"https://www.perl.org/get.html\"\u003e\n      \u003cimg src=\"https://img.shields.io/badge/perl-5.8.9+-blue.svg\"\n           alt=\"Requires Perl 5.8.9+\" /\u003e\n    \u003c/a\u003e\n    \u003c!-- CPAN --\u003e\n    \u003ca href=\"https://metacpan.org/pod/Alien::libdeflate\"\u003e\n      \u003cimg src=\"https://img.shields.io/cpan/v/Alien-libdeflate.svg\"\n           alt=\"CPAN\" /\u003e\n    \u003c/a\u003e\n    \u003c!-- GitHub Actions --\u003e\n    \u003ca href=\"https://github.com/kiwiroy/alien-libdeflate/actions/workflows/ci.yml\"\u003e\n      \u003cimg src=\"https://github.com/kiwiroy/alien-libdeflate/actions/workflows/ci.yml/badge.svg\"\n           alt=\"Build Status\" /\u003e\n    \u003c/a\u003e\n\u003c/div\u003e\n\n# NAME\n\nAlien::libdeflate - Fetch/build/stash the libdeflate headers and libs for\n[libdeflate](https://github.com/ebiggers/libdeflate)\n\n# SYNOPSIS\n\nIn your `Makefile.PL` with [ExtUtils::MakeMaker](https://metacpan.org/pod/ExtUtils%3A%3AMakeMaker).\n\n    use Alien::libdeflate;\n    use ExtUtils::MakeMaker;\n    use Alien::Base::Wrapper qw( Alien::libdeflate !export );\n    use Config;\n\n    WriteMakefile(\n      # ...\n      Alien::Base::Wrapper-\u003emm_args,\n      # ...\n      );\n\nIn your script or module.\n\n    use Alien::libdeflate;\n    use Env qw( @PATH );\n\n    unshift @PATH, Alien::libdeflate-\u003ebin_dir;\n\n# DESCRIPTION\n\nDownload, build, and install the libdeflate C headers and libraries into a\nwell-known location, `Alien::libdeflate-\u003edist_dir`, from whence other\npackages can make use of them.\n\nThe version installed will be the latest release on the master branch from\nthe libdeflate GitHub [repository](https://github.com/ebiggers/libdeflate).\n\n## Influential Environment Variables\n\n- ALIEN\\_LIBDEFLATE\\_PROBE\\_CFLAGS\n\n    If _libdeflate_ is installed system wide in an alternate location than the\n    default search paths, set this variable to add the **include** directory using\n    `-I/path/to/system/libdeflate/include`\n\n- ALIEN\\_LIBDEFLATE\\_PROBE\\_LDFLAGS\n\n    If _libdeflate_ is installed system wide in an alternate location than the\n    default search paths, set this variable to add the **lib** directory using\n    `-L/path/to/system/libdeflate/lib`\n\n# AUTHORS\n\nRoy Storey (kiwiroy@cpan.org)\n\nZakariyya Mughal \u003czmughal@cpan.org\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkiwiroy%2Falien-libdeflate","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkiwiroy%2Falien-libdeflate","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkiwiroy%2Falien-libdeflate/lists"}