mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-10 15:45:15 -04:00
35 lines
681 B
Bash
35 lines
681 B
Bash
# Copyright 1999-2022 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit dune
|
|
|
|
COMMIT="b340204c72ae3ff27def6e116c1998485fc3227e"
|
|
MYPN="ocaml-${PN}"
|
|
|
|
DESCRIPTION="OCaml bindings for inotify"
|
|
HOMEPAGE="https://github.com/whitequark/ocaml-inotify"
|
|
SRC_URI="https://github.com/whitequark/${MYPN}/archive/${COMMIT}.tar.gz -> ${PF}.tar.gz"
|
|
S="${WORKDIR}/${MYPN}-${COMMIT}"
|
|
|
|
LICENSE="LGPL-2.1-with-linking-exception"
|
|
SLOT="0/${PV}"
|
|
KEYWORDS="~amd64"
|
|
IUSE="ocamlopt test"
|
|
|
|
DEPEND="
|
|
dev-ml/base-unix
|
|
dev-ml/base-bytes
|
|
"
|
|
RDEPEND="
|
|
${DEPEND}
|
|
test? (
|
|
>=dev-ml/ounit-2
|
|
dev-ml/ocaml-fileutils
|
|
dev-ml/lwt
|
|
)
|
|
"
|
|
|
|
RESTRICT="!test? ( test )"
|