gnu: libofx: Update to 0.10.7.
* gnu/packages/finance.scm (libofx): Update to 0.10.7. [arguments]: Use gexps. [configure-flags]: Use search-input-directory. [inputs]: Remove labels.
This commit is contained in:
parent
e4bf10ab0b
commit
f618a5e2d7
1 changed files with 11 additions and 10 deletions
|
@ -1639,7 +1639,7 @@ a client based on Qt. This is a fork of Bitcoin Core.")
|
||||||
(define-public libofx
|
(define-public libofx
|
||||||
(package
|
(package
|
||||||
(name "libofx")
|
(name "libofx")
|
||||||
(version "0.9.15")
|
(version "0.10.7")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
|
@ -1648,14 +1648,15 @@ a client based on Qt. This is a fork of Bitcoin Core.")
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1jx56ma351p8af8dvavygjwf6ipa7qbgq7bpdsymwj27apdnixfy"))))
|
"1k3ygavyb9b3f1ra62dsa46iiia0a1588yn3zy7bh7w4vfcrbd6d"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:parallel-build? #f ;fails with -j64
|
(list
|
||||||
|
#:parallel-build? #f ;fails with -j64
|
||||||
#:configure-flags
|
#:configure-flags
|
||||||
(list (string-append "--with-opensp-includes="
|
#~(list (string-append "--with-opensp-includes="
|
||||||
(assoc-ref %build-inputs "opensp")
|
(search-input-directory %build-inputs
|
||||||
"/include/OpenSP"))))
|
"include/OpenSP")))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list autoconf
|
(list autoconf
|
||||||
automake
|
automake
|
||||||
|
@ -1664,9 +1665,9 @@ a client based on Qt. This is a fork of Bitcoin Core.")
|
||||||
libtool
|
libtool
|
||||||
pkg-config))
|
pkg-config))
|
||||||
(inputs
|
(inputs
|
||||||
`(("curl" ,curl)
|
(list curl
|
||||||
("libxml++-2" ,libxml++-2)
|
libxml++-2
|
||||||
("opensp" ,opensp)))
|
opensp))
|
||||||
(home-page "http://libofx.sourceforge.net/")
|
(home-page "http://libofx.sourceforge.net/")
|
||||||
(synopsis "Library supporting the Open Financial Exchange format")
|
(synopsis "Library supporting the Open Financial Exchange format")
|
||||||
(description
|
(description
|
||||||
|
|
Reference in a new issue