me
/
guix
Archived
1
0
Fork 0

gnu: smithwaterman: Build and install shared library and headers.

* gnu/packages/bioinformatics.scm (smithwaterman)[arguments]: Add custom
phase to build PIE objects. Add custom 'build-dynamic phase to build
dynamic library. Adjust custom 'install phase to install shared library
and headers.
master
Efraim Flashner 2020-08-27 18:05:20 +03:00
parent 261bc778b6
commit afa352223f
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 17 additions and 0 deletions

View File

@ -15454,12 +15454,29 @@ some of the details of opening and jumping in tabix-indexed files.")
#:phases
(modify-phases %standard-phases
(delete 'configure) ; There is no configure phase.
(add-after 'unpack 'patch-source
(lambda _
(substitute* "Makefile"
(("-c ") "-c -fPIC "))
#t))
(add-after 'build 'build-dynamic
(lambda _
(invoke "g++"
"-shared" "-o" "libsmithwaterman.so"
"smithwaterman.o" "SmithWatermanGotoh.o"
"disorder.o" "BandedSmithWaterman.o"
"LeftAlign.o" "Repeats.o" "IndelAllele.o")))
(replace 'install
(lambda* (#:key outputs #:allow-other-keys)
(let* ((out (assoc-ref outputs "out"))
(bin (string-append out "/bin"))
(lib (string-append out "/lib")))
(install-file "smithwaterman" bin)
(for-each
(lambda (file)
(install-file file (string-append out "/include/smithwaterman")))
(find-files "." "\\.h$"))
(install-file "libsmithwaterman.so" lib)
(install-file "libsw.a" lib))
#t)))))
(home-page "https://github.com/ekg/smithwaterman")