mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: Add NTL.
* gnu/packages/algebra.scm (ntl): New variable.
This commit is contained in:
parent
588ad54ed3
commit
14e6520e2b
1 changed files with 41 additions and 0 deletions
|
@ -20,6 +20,7 @@
|
||||||
|
|
||||||
(define-module (gnu packages algebra)
|
(define-module (gnu packages algebra)
|
||||||
#:use-module (gnu packages)
|
#:use-module (gnu packages)
|
||||||
|
#:use-module (gnu packages autotools)
|
||||||
#:use-module (gnu packages compression)
|
#:use-module (gnu packages compression)
|
||||||
#:use-module (gnu packages multiprecision)
|
#:use-module (gnu packages multiprecision)
|
||||||
#:use-module (gnu packages mpi)
|
#:use-module (gnu packages mpi)
|
||||||
|
@ -281,6 +282,46 @@ (define-public arb
|
||||||
(license license:gpl2+)
|
(license license:gpl2+)
|
||||||
(home-page "http://fredrikj.net/arb/")))
|
(home-page "http://fredrikj.net/arb/")))
|
||||||
|
|
||||||
|
(define-public ntl
|
||||||
|
(package
|
||||||
|
(name "ntl")
|
||||||
|
(version "9.7.0")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append "http://shoup.net/ntl/ntl-"
|
||||||
|
version ".tar.gz"))
|
||||||
|
(sha256 (base32
|
||||||
|
"115frp5flyvw9wghz4zph1b3llmr5nbxk1skgsggckr81fh3gmxq"))))
|
||||||
|
(build-system gnu-build-system)
|
||||||
|
(native-inputs
|
||||||
|
`(("libtool" ,libtool)
|
||||||
|
("perl" ,perl))) ; for configuration
|
||||||
|
;; FIXME: Add optional input gf2x once available; then also add
|
||||||
|
;; configure flag "NTL_GF2X_LIB=on".
|
||||||
|
(inputs
|
||||||
|
`(("gmp" ,gmp)))
|
||||||
|
(arguments
|
||||||
|
`(#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(replace 'configure
|
||||||
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
|
(chdir "src")
|
||||||
|
(system* "./configure"
|
||||||
|
(string-append "PREFIX=" (assoc-ref outputs "out"))
|
||||||
|
;; Do not build especially for the build machine.
|
||||||
|
"NATIVE=off"
|
||||||
|
;; Also do not tune to the build machine.
|
||||||
|
"WIZARD=off"
|
||||||
|
"SHARED=on")
|
||||||
|
#t)))))
|
||||||
|
(synopsis "C++ library for number theory")
|
||||||
|
(description
|
||||||
|
"NTL is a C++ library providing data structures and algorithms
|
||||||
|
for manipulating signed, arbitrary length integers, and for vectors,
|
||||||
|
matrices, and polynomials over the integers and over finite fields.")
|
||||||
|
(license license:gpl2+)
|
||||||
|
(home-page "http://shoup.net/ntl/")))
|
||||||
|
|
||||||
(define-public bc
|
(define-public bc
|
||||||
(package
|
(package
|
||||||
(name "bc")
|
(name "bc")
|
||||||
|
|
Loading…
Reference in a new issue