You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-ml/dns/dns-1.0.0-r1.ebuild

44 lines
855 B

# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=5
inherit findlib opam
DESCRIPTION="A pure OCaml implementation of the DNS protocol"
HOMEPAGE="https://github.com/mirage/ocaml-dns https://mirage.io"
SRC_URI="https://github.com/mirage/${PN}/archive/v${PV}.tar.gz -> ocaml-${P}.tar.gz"
LICENSE="LGPL-2 LGPL-2.1-with-linking-exception ISC"
SLOT="0/${PV}"
KEYWORDS="~amd64"
IUSE=""
RDEPEND="
>=dev-ml/ocaml-base64-2.0.0:=
>=dev-ml/ocaml-cstruct-3.0.2:=[ppx]
dev-ml/ocaml-hashcons:=
>=dev-ml/ocaml-ipaddr-2.6.0:=
dev-ml/re:=
>=dev-ml/ocaml-uri-1.7.0:=
dev-ml/result:=
!dev-ml/odns
"
DEPEND="
dev-ml/jbuilder
${RDEPEND}
"
# Do not work
RESTRICT="test"
S="${WORKDIR}/ocaml-${P}"
src_compile() {
jbuilder build @install -p dns || die
}
src_test() {
jbuilder runtest -p dns || die
}