mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: avidemux: Use gexps.
* gnu/packages/video.scm (avidemux) [phases]: Use gexps. Change-Id: I8a02285a7c85c4cd78558e88c073d62e10fe8d4d
This commit is contained in:
parent
ba53c29c43
commit
a3ed1a2e0d
1 changed files with 66 additions and 65 deletions
|
@ -3634,11 +3634,12 @@ for use with HTML5 video.")
|
||||||
sqlite
|
sqlite
|
||||||
zlib))
|
zlib))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f ; no check target
|
(list
|
||||||
|
#:tests? #f ; no check target
|
||||||
#:phases
|
#:phases
|
||||||
;; Make sure files inside the included ffmpeg tarball are
|
;; Make sure files inside the included ffmpeg tarball are
|
||||||
;; patch-shebanged.
|
;; patch-shebanged.
|
||||||
(let ((ffmpeg "ffmpeg-4.2.4"))
|
#~(let ((ffmpeg "ffmpeg-4.2.4"))
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(add-before 'patch-source-shebangs 'unpack-ffmpeg
|
(add-before 'patch-source-shebangs 'unpack-ffmpeg
|
||||||
(lambda _
|
(lambda _
|
||||||
|
@ -3661,8 +3662,8 @@ for use with HTML5 video.")
|
||||||
(setenv "CMAKE_LIBRARY_PATH" (getenv "LIBRARY_PATH"))
|
(setenv "CMAKE_LIBRARY_PATH" (getenv "LIBRARY_PATH"))
|
||||||
(setenv "CMAKE_INCLUDE_PATH" (getenv "C_INCLUDE_PATH"))))
|
(setenv "CMAKE_INCLUDE_PATH" (getenv "C_INCLUDE_PATH"))))
|
||||||
(replace 'build
|
(replace 'build
|
||||||
(lambda* (#:key inputs outputs #:allow-other-keys)
|
(lambda _
|
||||||
(let* ((out (assoc-ref outputs "out"))
|
(let* ((out #$output)
|
||||||
(lib (string-append out "/lib"))
|
(lib (string-append out "/lib"))
|
||||||
(top (getcwd))
|
(top (getcwd))
|
||||||
(build_component
|
(build_component
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue