gnu: Add linasm.

* gnu/packages/maths.scm (linasm): New variable.
This commit is contained in:
Ricardo Wurmus 2023-10-06 15:02:40 +02:00
parent a7e6b4c98b
commit b19dfb9d3a
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -829,6 +829,44 @@ (define-public glpk-4
(base32
"040sfaa9jclg2nqdh83w71sv9rc1sznpnfiripjdyr48cady50a2"))))))
(define-public linasm
(package
(name "linasm")
(version "1.13")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://git.code.sf.net/p/linasm/linasm")
(commit (string-append "v" version "(stable)"))))
(file-name (git-file-name name version))
(sha256
(base32
"11095bxjxsq3a9apvyi1kpddwkg9b2hc5ga65qhrdxzvdsrjhaaq"))))
(build-system gnu-build-system)
(arguments
(list
#:tests? #false ;there are none
#:make-flags
#~(list (string-append "prefix=" #$output))
#:phases
'(modify-phases %standard-phases
(delete 'configure))))
(supported-systems '("x86_64-linux"))
(home-page "https://sourceforge.net/projects/linasm/")
(synopsis "Collection of fast and optimized assembly libraries for x86-64")
(description
"LinAsm is collection of very fast and SIMD optimized assembly written
libraries for x86-64.
It implements many common and widely used algorithms for array manipulations:
searching, sorting, arithmetic and vector operations, unit conversions; fast
mathematical and statistic functions; numbers and time converting algorithms;
@dfn{finite impulse response} (FIR) digital filters; spectrum analysis
algorithms, Fast Hartley transformation; CPU cache friendly functions and
extremely fast @dfn{abstract data types} (ADT) such as hash tables b-trees,
and much more.")
(license license:lgpl3+)))
(define-public 4ti2
(package
(name "4ti2")