blob: 23d19b084202f452716b086599fbc4990d959c15 (
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
25
26
27
|
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="Colorado University binary Decision Diagram library"
HOMEPAGE="https://davidkebo.com/cudd/"
SRC_URI="https://davidkebo.com/source/cudd_versions/${P}.tar.gz"
LICENSE="BSD"
SLOT="0/${PV}"
KEYWORDS="~amd64 ~x86"
src_configure() {
local myconf=(
--enable-dddmp
--enable-obj
--enable-shared
)
econf ${myconf[@]}
}
src_install() {
default
find "${ED}" -name "*.la" -type f -delete || die
}
|