summaryrefslogtreecommitdiff
path: root/dev-ml/jsonm/jsonm-1.0.2.ebuild
diff options
context:
space:
mode:
authorAlfredo Tupone <tupone@gentoo.org>2024-11-22 20:36:09 +0100
committerAlfredo Tupone <tupone@gentoo.org>2024-11-22 20:36:53 +0100
commit478904b0dd0b968493c0443639bee1fa263f1287 (patch)
tree020cb1ac94f83510cc40bf7deb54de084e786272 /dev-ml/jsonm/jsonm-1.0.2.ebuild
parent16d966e44b1ff8b8f614a548892727ded8e6c0a0 (diff)
downloadgentoo-478904b0dd0b968493c0443639bee1fa263f1287.tar.gz
gentoo-478904b0dd0b968493c0443639bee1fa263f1287.tar.bz2
gentoo-478904b0dd0b968493c0443639bee1fa263f1287.zip
dev-ml/jsonm: add 1.0.2
Signed-off-by: Alfredo Tupone <tupone@gentoo.org>
Diffstat (limited to 'dev-ml/jsonm/jsonm-1.0.2.ebuild')
-rw-r--r--dev-ml/jsonm/jsonm-1.0.2.ebuild37
1 files changed, 37 insertions, 0 deletions
diff --git a/dev-ml/jsonm/jsonm-1.0.2.ebuild b/dev-ml/jsonm/jsonm-1.0.2.ebuild
new file mode 100644
index 000000000000..64e58477661e
--- /dev/null
+++ b/dev-ml/jsonm/jsonm-1.0.2.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit findlib
+
+DESCRIPTION="Non-blocking streaming JSON codec for OCaml"
+HOMEPAGE="https://erratique.ch/software/jsonm"
+SRC_URI="https://erratique.ch/software/jsonm/releases/${P}.tbz"
+
+LICENSE="ISC"
+SLOT="0/${PV}"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
+
+RDEPEND=">=dev-ml/uutf-1.0.0:=
+ dev-lang/ocaml:=
+ dev-ml/uchar:="
+DEPEND="${RDEPEND}
+ dev-ml/topkg
+ dev-ml/ocamlbuild
+ dev-ml/findlib"
+
+src_compile() {
+ ocaml pkg/pkg.ml build || die
+}
+
+src_install() {
+ # Can't use opam-installer here as it is an opam dep...
+ findlib_src_preinst
+
+ local nativelibs="$(echo _build/src/${PN}.cm{x,xa,xs,ti} _build/src/${PN}.a)"
+ ocamlfind install ${PN} _build/pkg/META _build/src/${PN}.mli _build/src/${PN}.cm{a,i} ${nativelibs} || die
+
+ newbin _build/test/jsontrip.native jsontrip
+ dodoc CHANGES.md TODO.md README.md
+}