gnu: libmediainfo: Adjust build phases.

* gnu/packages/video.scm (libmediainfo)[arguments]: Change to the build
directory before running autogen.
master
Efraim Flashner 2017-09-05 21:25:24 +03:00
parent b100a70495
commit 0cae36b5e5
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 4 additions and 3 deletions

View File

@ -2250,10 +2250,11 @@ practically any type of media.")
#:phases
;; build scripts not in root of archive
(modify-phases %standard-phases
(add-before 'configure 'pre-configure
(add-after 'unpack 'change-to-build-dir
(lambda _
(chdir "Project/GNU/Library")))
(add-after 'unpack 'autogen
(chdir "Project/GNU/Library")
#t))
(add-after 'change-to-build-dir 'autogen
(lambda _
(zero? (system* "sh" "autogen.sh")))))))
(home-page "https://mediaarea.net/en/MediaInfo")