3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

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

View file

@ -368,13 +368,13 @@ H.264 (MPEG-4 AVC) video streams.")
(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