gnu: mkvtoolnix: Use INVOKE.

* gnu/packages/video.scm (mkvtoolnix)[arguments]: Substitute INVOKE for
SYSTEM*.
This commit is contained in:
Tobias Geerinckx-Rice 2018-04-01 08:02:28 +02:00
parent 8d5960d1b1
commit 6c4d1413f2
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 3 additions and 3 deletions

View File

@ -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