mirror of
https://github.com/gentoo-mirror/guru.git
synced 2025-04-20 08:18:49 -04:00
28 lines
592 B
Bash
28 lines
592 B
Bash
# Copyright 1999-2022 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit dune
|
|
|
|
DESCRIPTION="Unix-specific extensions to some of the modules defined in [core] and [core_kernel]"
|
|
HOMEPAGE="
|
|
https://github.com/janestreet/core_unix
|
|
https://opam.ocaml.org/packages/core_unix/
|
|
"
|
|
SRC_URI="https://github.com/janestreet/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0/${PV}"
|
|
KEYWORDS="~amd64"
|
|
IUSE="ocamlopt"
|
|
|
|
RDEPEND="
|
|
=dev-ml/core-0.14*:=
|
|
>=dev-lang/ocaml-4.08.0:=[ocamlopt?]
|
|
"
|
|
DEPEND="
|
|
${RDEPEND}
|
|
sys-kernel/linux-headers
|
|
"
|