dev-ml/ezjsonm: initial import

Signed-off-by: Alessandro Barbieri <lssndrbarbieri@gmail.com>
This commit is contained in:
Alessandro Barbieri
2022-04-02 09:39:22 +02:00
parent efaab1557a
commit 265efda72f
3 changed files with 43 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit dune
DESCRIPTION="An easy interface on top of the Jsonm library"
HOMEPAGE="https://github.com/mirage/ezjsonm"
SRC_URI="https://github.com/mirage/ezjsonm/releases/download/v${PV}/${PN}-v${PV}.tbz"
S="${WORKDIR}/${PN}-v${PV}"
LICENSE="ISC"
SLOT="0/${PV}"
KEYWORDS="~amd64"
IUSE="ocamlopt"
DEPEND="
dev-ml/hex
>=dev-ml/jsonm-1.0.0
dev-ml/lwt
dev-ml/sexplib0
dev-ml/uutf
"
RDEPEND="${DEPEND}"
src_install() {
dune_src_install ezjsonm
dune_src_install ezjsonm-lwt
}