[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#75032] [PATCH 11/13] gnu: pari-gp: Use G-Expressions.
From: |
Vinicius Monego |
Subject: |
[bug#75032] [PATCH 11/13] gnu: pari-gp: Use G-Expressions. |
Date: |
Sun, 22 Dec 2024 17:26:55 +0000 |
From: vicvbcun <guix@ikherbers.com>
* gnu/packages/algebra.scm (pari-gp)[arguments]: Use G-Expressions. Unset
make-flags.
Change-Id: Id2be46acd67b474d6fdb8935070ffb243e87f920
Co-authored by: Vinicius Monego <monego@posteo.net>
Change-Id: I7be07998e9e2d1fe9194d4af6a57537467f5e097
---
gnu/packages/algebra.scm | 19 +++++++++----------
1 file changed, 9 insertions(+), 10 deletions(-)
diff --git a/gnu/packages/algebra.scm b/gnu/packages/algebra.scm
index 4d7b4001cd..32834f1c15 100644
--- a/gnu/packages/algebra.scm
+++ b/gnu/packages/algebra.scm
@@ -245,16 +245,15 @@ (define-public pari-gp
(native-inputs (list (texlive-updmap.cfg)))
(inputs (list gmp libx11 perl readline))
(arguments
- '(#:make-flags '("all")
- #:test-target "dobench"
- #:phases
- (modify-phases %standard-phases
- (replace 'configure
- (lambda* (#:key outputs #:allow-other-keys)
- (invoke "./Configure"
- "--mt=pthread"
- (string-append "--prefix="
- (assoc-ref outputs "out"))))))))
+ (list
+ #:test-target "dobench"
+ #:phases
+ #~(modify-phases %standard-phases
+ (replace 'configure
+ (lambda _
+ (invoke "./Configure"
+ "--mt=pthread"
+ (string-append "--prefix=" #$output)))))))
(synopsis "PARI/GP, a computer algebra system for number theory")
(description
"PARI/GP is a widely used computer algebra system designed for fast
--
2.39.5
- [bug#75032] [PATCH 00/13] Add more SageMath packages, Vinicius Monego, 2024/12/22
- [bug#75032] [PATCH 01/13] gnu: Add sagemath-data-conway-polynomials., Vinicius Monego, 2024/12/22
- [bug#75032] [PATCH 02/13] gnu: Add sagemath-data-polytopes-db., Vinicius Monego, 2024/12/22
- [bug#75032] [PATCH 09/13] gnu: Add palp., Vinicius Monego, 2024/12/22
- [bug#75032] [PATCH 08/13] gnu: Add gfan., Vinicius Monego, 2024/12/22
- [bug#75032] [PATCH 13/13] gnu: Add python-sphinx-inline-tabs., Vinicius Monego, 2024/12/22
- [bug#75032] [PATCH 03/13] gnu: Add sagemath-data-graphs., Vinicius Monego, 2024/12/22
- [bug#75032] [PATCH 05/13] gnu: Add python-pytz-deprecation-shim., Vinicius Monego, 2024/12/22
- [bug#75032] [PATCH 04/13] gnu: Add sagemath-data-combinatorial-designs., Vinicius Monego, 2024/12/22
- [bug#75032] [PATCH 10/13] gnu: Add tachyon., Vinicius Monego, 2024/12/22
- [bug#75032] [PATCH 11/13] gnu: pari-gp: Use G-Expressions.,
Vinicius Monego <=
- [bug#75032] [PATCH 06/13] gnu: Add python-lrcalc., Vinicius Monego, 2024/12/22
- [bug#75032] [PATCH 12/13] gnu: pari-gp: Install galdata., Vinicius Monego, 2024/12/22
- [bug#75032] [PATCH 07/13] gnu: Add sympow., Vinicius Monego, 2024/12/22