me
/
guix
Archived
1
0
Fork 0

gnu: mlt: Update to 6.12.0.

* gnu/packages/video.scm (mlt): Update to 6.12.0.
[arguments]: Re-indent.
master
Tobias Geerinckx-Rice 2019-02-17 21:23:17 +01:00
parent 836931a5a7
commit 7acc52f98b
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 11 additions and 17 deletions

View File

@ -2039,7 +2039,7 @@ from sites like Twitch.tv and pipes them into a video player of choice.")
(define-public mlt (define-public mlt
(package (package
(name "mlt") (name "mlt")
(version "6.10.0") (version "6.12.0")
(source (origin (source (origin
(method git-fetch) (method git-fetch)
(uri (git-reference (uri (git-reference
@ -2048,16 +2048,10 @@ from sites like Twitch.tv and pipes them into a video player of choice.")
(file-name (git-file-name name version)) (file-name (git-file-name name version))
(sha256 (sha256
(base32 (base32
"0ki86yslr5ywa6sz8pjrgd9a4rn2rr4mss2zkmqi7pq8prgsm1fr")) "0pzm3mjbbdl2rkbswgyfkx552xlxh2qrwzsi2a4dicfr92rfgq6w"))))
(modules '((guix build utils)))
(snippet '(begin
;; As of glibc 2.26, <xlocale.h> no longer is.
(substitute* "src/framework/mlt_property.h"
(("xlocale\\.h") "locale.h"))
#t))))
(build-system gnu-build-system) (build-system gnu-build-system)
(arguments (arguments
`(#:tests? #f ; no tests `(#:tests? #f ; no tests
#:make-flags '("CC=gcc" "CXX=g++ -std=gnu++11") #:make-flags '("CC=gcc" "CXX=g++ -std=gnu++11")
#:configure-flags #:configure-flags
(list "--enable-gpl3" (list "--enable-gpl3"
@ -2065,14 +2059,14 @@ from sites like Twitch.tv and pipes them into a video player of choice.")
#:phases #:phases
(modify-phases %standard-phases (modify-phases %standard-phases
(add-after (add-after
'configure 'override-LDFLAGS 'configure 'override-LDFLAGS
(lambda* (#:key outputs #:allow-other-keys) (lambda* (#:key outputs #:allow-other-keys)
(substitute* "config.mak" (substitute* "config.mak"
(("LDFLAGS\\+=") (("LDFLAGS\\+=")
(string-append "LDFLAGS+=-Wl,-rpath=" (string-append "LDFLAGS+=-Wl,-rpath="
(assoc-ref outputs "out") (assoc-ref outputs "out")
"/lib "))) "/lib ")))
#t))))) #t)))))
(inputs (inputs
`(("alsa-lib" ,alsa-lib) `(("alsa-lib" ,alsa-lib)
("ffmpeg" ,ffmpeg-3.4) ("ffmpeg" ,ffmpeg-3.4)