forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Florian Schmaus <[email protected]>
- Loading branch information
Showing
2 changed files
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
DIST ezlib-1.0.12.tar.gz 49803 BLAKE2B 6541c51d53924dba646485c7f6ff9640d0b52a62aff817d461d188cad48072a8706de8e81ed9ada84530463e872a95f5cd2263a0e6b0467b793bf37eb19ca688 SHA512 950a76ef6714882909c8c03cb0c21f246fd04bb42b44496b8865a96da54544fad17b2e3f54ef0b744ae32a1b9930f32c5fbcd526833f3736e8e5087483e61233 | ||
DIST ezlib-1.0.13.tar.gz 49817 BLAKE2B c61d514da71580e4e55f817f3e616c22094d5425e0aa8423f275bc94c52aefa74261a8bf5da4ca8600eccc84ba143290b4d6f7b5f7a6f8b23d508031e8d27af4 SHA512 947594a219c71a9afb792dc7766712694159cf7ed24df37c646ebbe8b366f82035067cb75ba00d7b9364e1ffc438090c54a93f41f67a57167c8ec4ab8f1ae663 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Copyright 1999-2024 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=8 | ||
|
||
inherit rebar | ||
|
||
DESCRIPTION="Native zlib driver for Erlang and Elixir" | ||
HOMEPAGE="https://github.com/processone/ezlib" | ||
SRC_URI="https://github.com/processone/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" | ||
|
||
LICENSE="Apache-2.0" | ||
SLOT="0" | ||
KEYWORDS="~amd64 ~arm ~sparc ~x86" | ||
|
||
DEPEND=" | ||
>=dev-lang/erlang-17.1:= | ||
>=dev-erlang/p1_utils-1.0.26 | ||
sys-libs/zlib | ||
" | ||
RDEPEND="${DEPEND}" | ||
|
||
DOCS=( CHANGELOG.md README.md ) |