blob: 77dfa81698f0ec4ccc22b98c727a0b61a19f9256 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Copyright 2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit opam
DESCRIPTION="Streaming XML codec for OCaml"
HOMEPAGE="https://erratique.ch/software/xmlm"
SRC_URI="https://erratique.ch/software/${PN}/releases/${P}.tbz"
LICENSE="ISC"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86"
DEPEND="${RDEPEND}
dev-ml/topkg
dev-ml/ocamlbuild
dev-ml/findlib"
src_compile() {
ocaml pkg/pkg.ml build || die
}
|