blob: 5a7f8e3fb6acb7b27687a3e18b65985ddf5ba7a1 (
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
|
# Copyright 2020-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit opam
DESCRIPTION="Persistent-mode afl-fuzz for ocaml"
HOMEPAGE="
https://github.com/stedolan/ocaml-afl-persistent
https://opam.ocaml.org/packages/afl-persistent/
"
SRC_URI="https://github.com/stedolan/ocaml-afl-persistent/archive/v${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/ocaml-${P}"
LICENSE="MIT"
SLOT="0/${PV}"
KEYWORDS="~amd64"
RDEPEND="dev-lang/ocaml:="
DEPEND="${RDEPEND}"
src_compile() {
./build.sh || die
}
|