Files
guru/dev-ml/spelll/spelll-0.4.ebuild
Thomas Bracht Laumann Jespersen b285032193 dev-ml/spelll: unkeyword ~x86, add subslot, tests
Signed-off-by: Thomas Bracht Laumann Jespersen <t@laumann.xyz>
2025-10-21 19:19:16 +00:00

33 lines
637 B
Bash

# Copyright 2023-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit dune
DESCRIPTION="Fuzzy string searching, using Levenshtein automaton"
HOMEPAGE="https://github.com/c-cube/spelll"
SRC_URI="https://github.com/c-cube/${PN}/archive/v${PV}.tar.gz -> ${P}.gh.tar.gz"
LICENSE="BSD"
SLOT="0/${PV}"
KEYWORDS="~amd64"
IUSE="+ocamlopt test"
RESTRICT="!test? ( test )"
DOCS=( README.md )
RDEPEND="
dev-ml/seq:=[ocamlopt?]
dev-ml/stdlib-shims:=[ocamlopt?]
>=dev-lang/ocaml-4.03.0:=[ocamlopt?]
"
DEPEND="
${RDEPEND}
test? (
dev-ml/qcheck:=[ocamlopt?]
dev-ml/mdx:=[ocamlopt?]
)
"