diff options
author | 2017-04-01 18:37:48 +0200 | |
---|---|---|
committer | 2017-04-02 10:37:56 +0200 | |
commit | f9833741196ecfd4fb45acdd2292eb197a93e47d (patch) | |
tree | 3a9ccaba68ea13c34b9c7290dc5a098f88ee49e0 /dev-ml/ppx_assert/ppx_assert-0.9.0.ebuild | |
parent | dev-ml/incremental: Bump to 0.9.0 (diff) | |
download | gentoo-f9833741196ecfd4fb45acdd2292eb197a93e47d.tar.gz gentoo-f9833741196ecfd4fb45acdd2292eb197a93e47d.tar.bz2 gentoo-f9833741196ecfd4fb45acdd2292eb197a93e47d.zip |
dev-ml/ppx_assert: bump to 0.9.0
Package-Manager: Portage-2.3.5, Repoman-2.3.2
Diffstat (limited to 'dev-ml/ppx_assert/ppx_assert-0.9.0.ebuild')
-rw-r--r-- | dev-ml/ppx_assert/ppx_assert-0.9.0.ebuild | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/dev-ml/ppx_assert/ppx_assert-0.9.0.ebuild b/dev-ml/ppx_assert/ppx_assert-0.9.0.ebuild new file mode 100644 index 000000000000..a4e279eb7c35 --- /dev/null +++ b/dev-ml/ppx_assert/ppx_assert-0.9.0.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +DESCRIPTION="Assert-like extension nodes that raise useful errors on failure" +HOMEPAGE="https://github.com/janestreet/ppx_assert" +SRC_URI="https://github.com/janestreet/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0/${PV}" +KEYWORDS="~amd64" +IUSE="" + +DEPEND=" + dev-lang/ocaml:= + dev-ml/base:= + dev-ml/ppx_compare:= + dev-ml/ppx_core:= + dev-ml/ppx_driver:= + dev-ml/ppx_here:= + dev-ml/ppx_metaquot:= + dev-ml/ppx_sexp_conv:= + dev-ml/ppx_type_conv + dev-ml/sexplib:= + dev-ml/ocaml-migrate-parsetree:= +" + +RDEPEND="${DEPEND}" +DEPEND="${RDEPEND} dev-ml/opam dev-ml/jbuilder" + +src_install() { + opam-installer -i \ + --prefix="${ED}/usr" \ + --libdir="${D}/$(ocamlc -where)" \ + --docdir="${ED}/usr/share/doc/${PF}" \ + ${PN}.install || die +} |