gnu: mkvtoolnix: Use INVOKE.
* gnu/packages/video.scm (mkvtoolnix)[arguments]: Substitute INVOKE for SYSTEM*.
This commit is contained in:
parent
8d5960d1b1
commit
6c4d1413f2
|
@ -368,13 +368,13 @@ H.264 (MPEG-4 AVC) video streams.")
|
||||||
(replace 'build
|
(replace 'build
|
||||||
(lambda _
|
(lambda _
|
||||||
(let ((-j (list "-j" (number->string (parallel-job-count)))))
|
(let ((-j (list "-j" (number->string (parallel-job-count)))))
|
||||||
(zero? (apply system* "rake" -j)))))
|
(apply invoke "rake" -j))))
|
||||||
(replace 'check
|
(replace 'check
|
||||||
(lambda _
|
(lambda _
|
||||||
(zero? (system* "rake" "tests/unit"))))
|
(invoke "rake" "tests/unit")))
|
||||||
(replace 'install
|
(replace 'install
|
||||||
(lambda _
|
(lambda _
|
||||||
(zero? (system* "rake" "install")))))))
|
(invoke "rake" "install"))))))
|
||||||
(home-page "https://mkvtoolnix.download")
|
(home-page "https://mkvtoolnix.download")
|
||||||
(synopsis "Tools to create, alter and inspect Matroska files")
|
(synopsis "Tools to create, alter and inspect Matroska files")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Reference in New Issue