mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -05:00
gnu: Add linasm.
* gnu/packages/maths.scm (linasm): New variable.
This commit is contained in:
parent
a7e6b4c98b
commit
b19dfb9d3a
1 changed files with 38 additions and 0 deletions
|
@ -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")
|
||||
|
|
Loading…
Reference in a new issue