gnu: ephoto: Update to 1.6.0.
* gnu/packages/enlightenment.scm (ephoto): Update to 1.6.0. [build-system]: Switch to meson-build-system. [arguments]: Remove trailing #t from phases. [native-inputs]: Remove check.
This commit is contained in:
parent
73ff9d6e0e
commit
2d5965979d
1 changed files with 5 additions and 5 deletions
|
@ -516,23 +516,23 @@ and in creating applications based on the Enlightenment Foundation Library suite
|
||||||
(define-public ephoto
|
(define-public ephoto
|
||||||
(package
|
(package
|
||||||
(name "ephoto")
|
(name "ephoto")
|
||||||
(version "1.5")
|
(version "1.6.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "https://download.enlightenment.org/rel/"
|
(uri (string-append "https://download.enlightenment.org/rel/"
|
||||||
"apps/ephoto/ephoto-" version ".tar.xz"))
|
"apps/ephoto/ephoto-" version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "1q7v9abjp9jrs08xc7pqaac64yzax24dk1snjb9rciarzzh3mlzy"))))
|
(base32 "1lvhcs4ba8h3z78nyycbww8mj4cscb8k200dcc3cdy8vrvrp7g1n"))))
|
||||||
(build-system gnu-build-system)
|
(build-system meson-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:phases
|
'(#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(add-after 'unpack 'set-home-directory
|
(add-after 'unpack 'set-home-directory
|
||||||
;; FATAL: Cannot create run dir '/homeless-shelter/.run' - errno=2
|
;; FATAL: Cannot create run dir '/homeless-shelter/.run' - errno=2
|
||||||
(lambda _ (setenv "HOME" "/tmp") #t)))))
|
(lambda _ (setenv "HOME" "/tmp"))))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list check pkg-config))
|
(list pkg-config))
|
||||||
(inputs
|
(inputs
|
||||||
(list efl))
|
(list efl))
|
||||||
(home-page "https://smhouston.us/projects/ephoto/")
|
(home-page "https://smhouston.us/projects/ephoto/")
|
||||||
|
|
Reference in a new issue