Files
gentoo/dev-ml/odoc-parser/odoc-parser-2.0.0.ebuild
Alfredo Tupone 3f1ee29dd4 dev-ml/odoc-parser: new package, add 2.0.0
Signed-off-by: Alfredo Tupone <tupone@gentoo.org>
2022-12-21 12:35:01 +01:00

27 lines
539 B
Bash

# Copyright 2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit dune
DESCRIPTION="Parser for ocaml documentation comments"
HOMEPAGE="https://github.com/ocaml-doc/odoc-parser"
SRC_URI="https://github.com/ocaml-doc/odoc-parser/releases/download/${PV}/${P}.tbz"
LICENSE="ISC"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="+ocamlopt test"
RESTRICT="!test? ( test )"
RDEPEND="
dev-ml/astring:=
dev-ml/result:=
dev-ml/camlp-streams:=
"
DEPEND="${RDEPEND}"
BDEPEND="test? (
dev-ml/ppx_expect
)"