blob: ff73f597c54df938e915373954810adfe4898905 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="C library for representation theory, combinatorics, and more"
HOMEPAGE="https://gitlab.com/sagemath/symmetrica"
SRC_URI="https://gitlab.com/sagemath/symmetrica/uploads/b3d8e1ad5ab2449c30bbc3147e7a5e53/${P}.tar.xz"
LICENSE="ISC"
SLOT="0/2"
KEYWORDS="amd64 ~riscv"
IUSE="doc"
DOCS=( README.md )
src_configure() {
econf $(use_enable doc)
}
src_install() {
default
find "${ED}" -name '*.la' -delete || die
}
|