gnu: dlib: Install shared library.

Reported by Hamzeh Nasajpour <h.nasajpour@pantherx.org>.

* gnu/packages/machine-learning.scm (dlib)[arguments]: Add
configure-flag to build shared library. Remove custom
'delete-static-library phase.
This commit is contained in:
Efraim Flashner 2020-08-13 11:29:08 +03:00
parent 9ac2a4ee34
commit f90b26917a
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -773,7 +773,8 @@ (define-public dlib
#t))))
(build-system cmake-build-system)
(arguments
`(#:phases
`(#:configure-flags '("-DBUILD_SHARED_LIBS=ON")
#:phases
(modify-phases %standard-phases
(add-after 'unpack 'disable-asserts
(lambda _
@ -810,12 +811,7 @@ (define-public dlib
(with-directory-excursion test-dir
(invoke "make" "-j" (number->string (parallel-job-count)))
(invoke "./dtest" "--runall"))
#t)))
(add-after 'install 'delete-static-library
(lambda* (#:key outputs #:allow-other-keys)
(delete-file (string-append (assoc-ref outputs "out")
"/lib/libdlib.a"))
#t)))))
#t))))))
(native-inputs
`(("pkg-config" ,pkg-config)
;; For tests.