diff options
author | Maciej Barć <xgqt@gentoo.org> | 2022-12-18 22:07:15 +0100 |
---|---|---|
committer | Maciej Barć <xgqt@gentoo.org> | 2022-12-18 22:50:55 +0100 |
commit | ae866c3295bad752b431d7610a61ea80de2b82cf (patch) | |
tree | f6bef97fcb4893eb4f28bfed6ba7350a3d2eeb09 /sci-mathematics/cudd | |
parent | sci-mathematics/libpoly: new package; add 0.1.11 (diff) | |
download | gentoo-ae866c3295bad752b431d7610a61ea80de2b82cf.tar.gz gentoo-ae866c3295bad752b431d7610a61ea80de2b82cf.tar.bz2 gentoo-ae866c3295bad752b431d7610a61ea80de2b82cf.zip |
sci-mathematics/cudd: new package; add 3.0.0
Signed-off-by: Maciej Barć <xgqt@gentoo.org>
Diffstat (limited to 'sci-mathematics/cudd')
-rw-r--r-- | sci-mathematics/cudd/Manifest | 1 | ||||
-rw-r--r-- | sci-mathematics/cudd/cudd-3.0.0.ebuild | 27 | ||||
-rw-r--r-- | sci-mathematics/cudd/metadata.xml | 14 |
3 files changed, 42 insertions, 0 deletions
diff --git a/sci-mathematics/cudd/Manifest b/sci-mathematics/cudd/Manifest new file mode 100644 index 000000000000..aa928fd41a20 --- /dev/null +++ b/sci-mathematics/cudd/Manifest @@ -0,0 +1 @@ +DIST cudd-3.0.0.tar.gz 1175302 BLAKE2B 9948495b4426e5931daafe0f48a1e1886bbadd6adbd5191b41aa7876522da7d29e84585a555184d5cf661a93e0d974b2caea79e135e7633eef1b7fdf173fdd1c SHA512 c0cb5fbdc4bb1793712e42c2e1377c3b1ae36f22ffc82bb3dd93a8a51f58bfe192fed9a37239a4c471326ef00a8f5e2f7fc801a2a6841be3db5a7e159e866f21 diff --git a/sci-mathematics/cudd/cudd-3.0.0.ebuild b/sci-mathematics/cudd/cudd-3.0.0.ebuild new file mode 100644 index 000000000000..23d19b084202 --- /dev/null +++ b/sci-mathematics/cudd/cudd-3.0.0.ebuild @@ -0,0 +1,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 +} diff --git a/sci-mathematics/cudd/metadata.xml b/sci-mathematics/cudd/metadata.xml new file mode 100644 index 000000000000..63814133765d --- /dev/null +++ b/sci-mathematics/cudd/metadata.xml @@ -0,0 +1,14 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> + +<pkgmetadata> + <maintainer type="project"> + <email>sci@gentoo.org</email> + <name>Gentoo Science Project</name> + </maintainer> + <longdescription> + CUDD stands for Colorado University Decision Diagram. It is a package for + the manipulation of Binary Decision Diagrams (BDDs), Algebraic Decision + Diagrams (ADDs) and Zero-suppressed Binary Decision Diagrams (ZDDs). + </longdescription> +</pkgmetadata> |