summaryrefslogtreecommitdiff
blob: 235c575c1fb466512698eb73d0a9bd21ec5aae18 (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-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$

EAPI=5

inherit findlib

DESCRIPTION="Error-recovering streaming HTML5 and XML parsers"
HOMEPAGE="https://github.com/aantron/markup.ml"
SRC_URI="https://github.com/aantron/markup.ml/archive/${PV}.tar.gz -> ${P}.tar.gz"

LICENSE="BSD"
SLOT="0/${PV}"
KEYWORDS="~amd64"
IUSE="doc test"

DEPEND="
	dev-lang/ocaml:=[ocamlopt]
	dev-ml/lwt:=[ocamlopt]
	dev-ml/uutf:=[ocamlopt]
"
RDEPEND="${DEPEND}"
DEPEND="${DEPEND}
	test? ( dev-ml/ounit )
	dev-ml/ocamlbuild"
S="${WORKDIR}/${PN}.ml-${PV}"

src_compile() {
	emake
	use doc && emake docs
}

src_install() {
	findlib_src_preinst
	emake ocamlfind-install
	dodoc README.md
	use doc && dohtml doc/html/*
}