mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -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
|
||||
(lambda _
|
||||
(let ((-j (list "-j" (number->string (parallel-job-count)))))
|
||||
(zero? (apply system* "rake" -j)))))
|
||||
(apply invoke "rake" -j))))
|
||||
(replace 'check
|
||||
(lambda _
|
||||
(zero? (system* "rake" "tests/unit"))))
|
||||
(invoke "rake" "tests/unit")))
|
||||
(replace 'install
|
||||
(lambda _
|
||||
(zero? (system* "rake" "install")))))))
|
||||
(invoke "rake" "install"))))))
|
||||
(home-page "https://mkvtoolnix.download")
|
||||
(synopsis "Tools to create, alter and inspect Matroska files")
|
||||
(description
|
||||
|
|
Loading…
Reference in a new issue