blob: 4836114dfdedf591ed65e9e54c5bc6a804330f6c (
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
28
29
30
31
32
33
34
35
36
37
38
39
|
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit dune
DESCRIPTION="Simple, fast & type safe language that leverages JavaScript and OCaml"
HOMEPAGE="https://reasonml.github.io"
SRC_URI="https://registry.npmjs.org/@esy-ocaml/${PN}/-/${P}.tgz"
S="${WORKDIR}/package"
LICENSE="MIT"
SLOT="0/${PV}"
KEYWORDS="~amd64"
IUSE="+ocamlopt"
RDEPEND="
<dev-lang/ocaml-4.13.0:=[ocamlopt?]
dev-ml/fix:=
dev-ml/menhir:=
dev-ml/merlin-extend:=
dev-ml/ocaml-migrate-parsetree:=
dev-ml/result:=
dev-ml/utop:=
"
DEPEND="${RDEPEND}"
DOCS=(
CODE_OF_CONDUCT.md HISTORY.md ORIGINS.md PLAN README.md
docs/GETTING_STARTED_CONTRIBUTING.md
docs/TYPE_PARAMETERS_PARSING.md
docs/USING_PARSER_PROGRAMMATICALLY.md
)
src_install() {
dune-install reason rtop
einstalldocs
}
|