mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-12-13 21:47:44 +00:00
Closes: https://github.com/gentoo/gentoo/pull/44116 Signed-off-by: Jesse De Haan <dehaanjesses@gmail.com> Signed-off-by: Michael Orlitzky <mjo@gentoo.org>
25 lines
597 B
Bash
25 lines
597 B
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
DESCRIPTION="Fast dense matrix arithmetic over GF(2^e) for 2 <= e <= 16"
|
|
HOMEPAGE="https://github.com/malb/m4rie"
|
|
SRC_URI="https://github.com/malb/${PN}/releases/download/${PV}/${P}.tar.gz"
|
|
|
|
LICENSE="GPL-2+"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~riscv ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
|
|
IUSE="debug"
|
|
|
|
DEPEND=">=sci-libs/m4ri-20240729-r0:="
|
|
RDEPEND="${DEPEND}"
|
|
|
|
src_configure() {
|
|
econf $(use_enable debug)
|
|
}
|
|
|
|
src_install() {
|
|
default
|
|
find "${ED}" -name '*.la' -delete || die
|
|
}
|