mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-27 04:59:27 -05:00
gnu: mkvtoolnix: Use INVOKE.
* gnu/packages/video.scm (mkvtoolnix)[arguments]: Substitute INVOKE for SYSTEM*.
This commit is contained in:
parent
8d5960d1b1
commit
6c4d1413f2
1 changed files with 3 additions and 3 deletions
|
@ -368,13 +368,13 @@ (define-public mkvtoolnix
|
||||||
(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 a new issue