gentoo-ebuilds/dev-ml/atd/atd-2.16.0.ebuild
Alfredo Tupone ff489c7b97
dev-ml/atd: add 2.16.0
Signed-off-by: Alfredo Tupone <tupone@gentoo.org>
2025-04-17 09:22:31 +02:00

41 lines
714 B
Bash

# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit dune
DESCRIPTION="Static types for JSON APIs"
HOMEPAGE="https://github.com/ahrefs/atd/"
SRC_URI="https://github.com/ahrefs/atd/archive/${PV}.tar.gz
-> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0/${PV}"
KEYWORDS="~amd64"
IUSE="+ocamlopt"
RESTRICT="test"
RDEPEND="
dev-ml/biniou:=
dev-ml/cmdliner:=
dev-ml/easy-format:=
dev-ml/menhir:=
dev-ml/re:=
dev-ml/yojson:=
"
DEPEND="${RDEPEND}"
src_install() {
dune_src_install \
atd \
atdgen \
atdgen-codec-runtime \
atdgen-runtime \
atdj \
atdpy \
atds \
atdts
dodoc CHANGES.md CONTRIBUTING.md README.md
}