diff options
author | Andrey Grozin <grozin@gentoo.org> | 2022-02-02 18:30:34 +0700 |
---|---|---|
committer | Andrey Grozin <grozin@gentoo.org> | 2022-02-02 18:30:34 +0700 |
commit | 160e3b15690cd14bfa268eced01a75f3a8062463 (patch) | |
tree | 6fdd3eedccaa777dbcb9b86e2dd0831e26cdf27c /sci-mathematics/arb/arb-2.22.1.ebuild | |
parent | dune.eclass: enhance build and test logs (diff) | |
download | gentoo-160e3b15690cd14bfa268eced01a75f3a8062463.tar.gz gentoo-160e3b15690cd14bfa268eced01a75f3a8062463.tar.bz2 gentoo-160e3b15690cd14bfa268eced01a75f3a8062463.zip |
sci-mathematics/arb: bump to 2.22.1
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Andrey Grozin <grozin@gentoo.org>
Diffstat (limited to 'sci-mathematics/arb/arb-2.22.1.ebuild')
-rw-r--r-- | sci-mathematics/arb/arb-2.22.1.ebuild | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/sci-mathematics/arb/arb-2.22.1.ebuild b/sci-mathematics/arb/arb-2.22.1.ebuild new file mode 100644 index 000000000000..0c54365c8935 --- /dev/null +++ b/sci-mathematics/arb/arb-2.22.1.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +CMAKE_BUILD_TYPE=Release +inherit cmake + +DESCRIPTION="C library for arbitrary-precision interval arithmetic" +HOMEPAGE="https://fredrikj.net/arb/" +SRC_URI="https://github.com/fredrik-johansson/arb/archive/${PV}.tar.gz -> ${P}.tar.gz" +IUSE="test" + +RESTRICT="!test? ( test )" + +LICENSE="GPL-2+" +SLOT="0/3" +KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos" + +RDEPEND=" + dev-libs/gmp:0= + dev-libs/mpfr:0= + sci-mathematics/flint:=" + +DEPEND="${RDEPEND}" + +src_configure() { + local mycmakeargs=( + -DBUILD_TESTING="$(usex test)" + ) + + cmake_src_configure +} |