mirror of
https://github.com/gentoo-mirror/guru.git
synced 2025-04-20 23:46:14 -04:00
27 lines
634 B
Bash
27 lines
634 B
Bash
# Copyright 1999-2022 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
MYPN="ocaml-${PN}"
|
|
|
|
inherit dune
|
|
|
|
DESCRIPTION="Send and receive Unix.file_descrs over Unix domain sockets"
|
|
HOMEPAGE="
|
|
https://github.com/xapi-project/ocaml-fd-send-recv
|
|
https://opam.ocaml.org/packages/fd-send-recv/
|
|
"
|
|
SRC_URI="https://github.com/xapi-project/${MYPN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
S="${WORKDIR}/${MYPN}-${PV}"
|
|
|
|
LICENSE="LGPL-2.1-with-linking-exception"
|
|
SLOT="0/${PV}"
|
|
KEYWORDS="~amd64"
|
|
IUSE="ocamlopt"
|
|
|
|
DEPEND="dev-ml/tuntap:="
|
|
RDEPEND="${DEPEND}"
|
|
|
|
RESTRICT="test" # tests require sudo
|