blob: 94f4308b2f9a2890ba6c1badf99bcdc8b1ff62fd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# Copyright 2020-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DIST_AUTHOR=TIMLEGGE
DIST_VERSION=0.019
inherit perl-module
DESCRIPTION="Read/write Brotli buffers/streams"
SLOT="0"
KEYWORDS="~amd64 ~x86"
RDEPEND="
app-arch/brotli:=
dev-perl/File-Slurper
virtual/perl-Getopt-Long
virtual/perl-Time-HiRes
"
DEPEND="
app-arch/brotli:=
"
BDEPEND="
${RDEPEND}
virtual/perl-ExtUtils-MakeMaker
"
PATCHES=(
"${FILESDIR}"/${PN}-0.019-unbundle.patch
)
|