mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: yaml-cpp: Don't provide gtest libraries or headers.
* gnu/packages/serialization.scm (yaml-cpp)[arguments]: Add a custom phase to remove installed googletest shared libraries and headers.
This commit is contained in:
parent
1506d491f9
commit
9a1ef44ec2
1 changed files with 18 additions and 2 deletions
|
@ -3,7 +3,7 @@
|
|||
;;; Copyright © 2016 Lukas Gradl <lgradl@openmailbox.org>
|
||||
;;; Copyright © 2016 David Craven <david@craven.ch>
|
||||
;;; Copyright © 2016 Marius Bakke <mbakke@fastmail.com>
|
||||
;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il>
|
||||
;;; Copyright © 2016, 2018 Efraim Flashner <efraim@flashner.co.il>
|
||||
;;; Copyright © 2017 Corentin Bocquillon <corentin@nybble.fr>
|
||||
;;; Copyright © 2017 Gregor Giesen <giesen@zaehlwerk.net>
|
||||
;;; Copyright © 2017 Frederick M. Muriithi <fredmanglis@gmail.com>
|
||||
|
@ -271,7 +271,23 @@ (define-public yaml-cpp
|
|||
"01gxn7kc8pzyh4aadjxxzq8cignmbwmm9rfrsmgqfg9w2q75dn74"))))
|
||||
(build-system cmake-build-system)
|
||||
(arguments
|
||||
'(#:configure-flags '("-DBUILD_SHARED_LIBS=ON")))
|
||||
'(#:configure-flags '("-DBUILD_SHARED_LIBS=ON")
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'install 'dont-install-gtest-libraries
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(let ((out (assoc-ref outputs "out")))
|
||||
(with-directory-excursion
|
||||
(string-append out "/include")
|
||||
(delete-file-recursively "gtest")
|
||||
(delete-file-recursively "gmock"))
|
||||
(with-directory-excursion
|
||||
(string-append out "/lib")
|
||||
(for-each (lambda (file)
|
||||
(delete-file file))
|
||||
'("libgmock.so" "libgmock_main.so"
|
||||
"libgtest.so" "libgtest_main.so"))))
|
||||
#t)))))
|
||||
(native-inputs
|
||||
`(("python" ,python)))
|
||||
(home-page "https://github.com/jbeder/yaml-cpp")
|
||||
|
|
Loading…
Reference in a new issue