blob: 4dd8ec02afc8dc3e1410949745ae5d632ab6666f (
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
|
# Copyright 2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit meson
DESCRIPTION="Streaming-capable SipHash Implementation"
HOMEPAGE="
https://c-util.github.io/c-siphash/
https://github.com/c-util/c-siphash/
"
SRC_URI="
https://github.com/c-util/c-siphash/archive/v${PV}.tar.gz
-> ${P}.gh.tar.gz
"
LICENSE="|| ( Apache-2.0 LGPL-2.1+ )"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~riscv"
DEPEND="
>=dev-libs/c-stdaux-1.5.0
"
BDEPEND="
virtual/pkgconfig
"
|