2024-01-12 11:53:20 +01:00
|
|
|
(define-module (glicid packages cpp))
|
|
|
|
|
|
|
|
(use-modules (guix packages) (gnu packages cpp))
|
|
|
|
|
|
|
|
|
|
|
|
(define-public reproc-with-cpp
|
|
|
|
(package
|
|
|
|
(inherit reproc)
|
|
|
|
(name "reproc-with-cpp")
|
|
|
|
(arguments
|
|
|
|
;; No tests.
|
|
|
|
`(#:tests? #f
|
|
|
|
;; Build the shared library instead of a static one.
|
2024-01-12 19:39:49 +01:00
|
|
|
#:configure-flags `("-DBUILD_SHARED_LIBS=1" "-DREPROC++=1")))
|
2024-01-12 11:53:20 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
))
|
|
|
|
|
2024-01-12 22:19:40 +01:00
|
|
|
(define-public reproc-with-cpp-static
|
|
|
|
(package
|
|
|
|
(inherit reproc)
|
|
|
|
(name "reproc-with-cpp-static")
|
|
|
|
(arguments
|
|
|
|
;; No tests.
|
|
|
|
`(#:tests? #f
|
|
|
|
;; Build the shared library instead of a static one.
|
|
|
|
#:configure-flags `("-DREPROC++=1")))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
))
|