mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-16 00:08:58 +03:00
Done via: ``` git grep -l 'virtual/zlib"' | xargs sed -i -e 's@virtual/zlib"@virtual/zlib:="@' ``` Signed-off-by: Michał Górny <mgorny@gentoo.org>
29 lines
575 B
Bash
29 lines
575 B
Bash
# Copyright 2020-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit cmake
|
|
|
|
DESCRIPTION="c library for the apache avro data serialization system"
|
|
HOMEPAGE="https://avro.apache.org/"
|
|
SRC_URI="mirror://apache/avro/avro-${PV}/c/avro-c-${PV}.tar.gz"
|
|
|
|
LICENSE="Apache-2.0"
|
|
SLOT="0"
|
|
KEYWORDS="amd64"
|
|
|
|
DEPEND="
|
|
app-arch/snappy:=
|
|
>=dev-libs/jansson-2.3:=
|
|
virtual/zlib:="
|
|
RDEPEND="${DEPEND}"
|
|
|
|
src_test() {
|
|
local CMAKE_SKIP_TESTS=(
|
|
test_avro_commons_schema # commons is only in full distro, not in avro-c
|
|
)
|
|
|
|
cmake_src_test
|
|
}
|