mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-07-21 14:38:43 +02:00
24 lines
536 B
Bash
24 lines
536 B
Bash
# Copyright 2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
DUNE_PKG_NAME=crunch
|
|
inherit dune
|
|
|
|
DESCRIPTION="Convert a filesystem into a static OCaml module"
|
|
HOMEPAGE="https://github.com/mirage/ocaml-crunch"
|
|
SRC_URI="https://github.com/mirage/${PN}/archive/refs/tags/v${PV}.tar.gz
|
|
-> ${P}.tar.gz"
|
|
|
|
LICENSE="ISC"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
IUSE="+ocamlopt"
|
|
RESTRICT="test"
|
|
|
|
DEPEND="
|
|
dev-ml/cmdliner:=[ocamlopt?]
|
|
dev-ml/ptime:=[ocamlopt?]
|
|
"
|
|
RDEPEND="${DEPEND}"
|
|
BDEPEND=">=dev-ml/dune-2.5"
|