gnu: rtmpdump: Don't install the static library.
* gnu/packages/networking.scm (rtmpdump)[arguments]: Add an ‘omit-static-library’ phase.master
parent
5237aa444d
commit
55d6b357a9
|
@ -280,6 +280,14 @@ GLib-based library, libnice, as well as GStreamer elements to use it.")
|
||||||
(string-append "prefix=" (assoc-ref %outputs "out")))
|
(string-append "prefix=" (assoc-ref %outputs "out")))
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'omit-static-library
|
||||||
|
(lambda _
|
||||||
|
(substitute* "librtmp/Makefile"
|
||||||
|
(("cp librtmp\\.a .*") ; don't install it
|
||||||
|
"")
|
||||||
|
(("librtmp\\.a ") ; don't build it
|
||||||
|
""))
|
||||||
|
#t))
|
||||||
(delete 'configure))))
|
(delete 'configure))))
|
||||||
(inputs
|
(inputs
|
||||||
`(("openssl" ,openssl-1.0)
|
`(("openssl" ,openssl-1.0)
|
||||||
|
|
Reference in New Issue