mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: vcflib: Use G-expressions.
* gnu/packages/bioinformatics.scm (vcflib)[source, arguments]: Rewrite using G-expressions. [arguments]: Do not return #t from custom phases. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
9258576eea
commit
9a68c07507
1 changed files with 51 additions and 52 deletions
|
@ -14567,7 +14567,7 @@ library automatically handles index file generation and use.")
|
||||||
(base32 "1r7pnajg997zdjkf1b38m14v0zqnfx52w7nbldwh1xpbpahb1hjh"))
|
(base32 "1r7pnajg997zdjkf1b38m14v0zqnfx52w7nbldwh1xpbpahb1hjh"))
|
||||||
(modules '((guix build utils)))
|
(modules '((guix build utils)))
|
||||||
(snippet
|
(snippet
|
||||||
'(begin
|
#~(begin
|
||||||
(substitute* "CMakeLists.txt"
|
(substitute* "CMakeLists.txt"
|
||||||
((".*fastahack.*") "")
|
((".*fastahack.*") "")
|
||||||
((".*smithwaterman.*") "")
|
((".*smithwaterman.*") "")
|
||||||
|
@ -14608,9 +14608,9 @@ library automatically handles index file generation and use.")
|
||||||
("intervaltree-src" ,(package-source intervaltree))
|
("intervaltree-src" ,(package-source intervaltree))
|
||||||
("multichoose-src" ,(package-source multichoose))))
|
("multichoose-src" ,(package-source multichoose))))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f ; no tests
|
(list #:tests? #f ; no tests
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
#~(modify-phases %standard-phases
|
||||||
(add-after 'unpack 'build-shared-library
|
(add-after 'unpack 'build-shared-library
|
||||||
(lambda _
|
(lambda _
|
||||||
(substitute* "CMakeLists.txt"
|
(substitute* "CMakeLists.txt"
|
||||||
|
@ -14651,8 +14651,7 @@ library automatically handles index file generation and use.")
|
||||||
Description: C++ library for parsing and manipulating VCF files~@
|
Description: C++ library for parsing and manipulating VCF files~@
|
||||||
Libs: -L${libdir} -lvcflib~@
|
Libs: -L${libdir} -lvcflib~@
|
||||||
Cflags: -I${includedir}~%"
|
Cflags: -I${includedir}~%"
|
||||||
out ,version)))
|
out #$version)))))))))
|
||||||
#t))))))
|
|
||||||
(home-page "https://github.com/vcflib/vcflib/")
|
(home-page "https://github.com/vcflib/vcflib/")
|
||||||
(synopsis "Library for parsing and manipulating VCF files")
|
(synopsis "Library for parsing and manipulating VCF files")
|
||||||
(description "Vcflib provides methods to manipulate and interpret
|
(description "Vcflib provides methods to manipulate and interpret
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue