gentoo-ebuilds/sci-libs/m4rie/m4rie-20250128.ebuild
Jesse De Haan 03dbcdf7c9
sci-libs/m4rie: add 20250128
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>
2025-10-11 07:46:58 -04:00

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
}