gnu: rtmpdump: Update to 2.4.
* gnu/packages/networking.scm (rtmpdump): Update to 2.4. [arguments]: Fix RUNPATH.master
parent
c1d3f5841d
commit
5237aa444d
|
@ -259,20 +259,24 @@ GLib-based library, libnice, as well as GStreamer elements to use it.")
|
||||||
(define-public rtmpdump
|
(define-public rtmpdump
|
||||||
(package
|
(package
|
||||||
(name "rtmpdump")
|
(name "rtmpdump")
|
||||||
(version "2.3")
|
(version "2.4")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri
|
(uri (git-reference
|
||||||
(string-append "https://rtmpdump.mplayerhq.hu/download/"
|
(url "https://git.ffmpeg.org/rtmpdump")
|
||||||
name "-" version ".tgz"))
|
(commit "c28f1bab7822de97353849e7787b59e50bbb1428")))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "0b2b49a57kpz9gi8dx1x3cs8b0gjx8x0c89x0q96kkl2knlvff7g"))))
|
(base32 "1n3kdip83nvvs4sin30zpcdr5q711mqhq2lxrv5vgbc6lskpwzlj"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f ; No tests
|
`(#:tests? #f ; no tests
|
||||||
#:make-flags
|
#:make-flags
|
||||||
(list
|
(list
|
||||||
|
;; The ‘validate-runpath’ phase fails to find librtmp.so.0.
|
||||||
|
(string-append "LDFLAGS=-Wl,-rpath="
|
||||||
|
(assoc-ref %outputs "out") "/lib")
|
||||||
(string-append "prefix=" (assoc-ref %outputs "out")))
|
(string-append "prefix=" (assoc-ref %outputs "out")))
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
|
|
Reference in New Issue