mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-14 19:05:10 -05:00
gnu: terminology: Update to 1.12.1.
* gnu/packages/enlightenment.scm (terminology): Update to 1.12.1. [source]: Remove trailing #t. [arguments]: Remove trailing #t from phases.
This commit is contained in:
parent
0997d1fddd
commit
26bd033fac
1 changed files with 5 additions and 7 deletions
|
@ -206,7 +206,7 @@ (define-public efl
|
|||
(define-public terminology
|
||||
(package
|
||||
(name "terminology")
|
||||
(version "1.11.0")
|
||||
(version "1.12.1")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri
|
||||
|
@ -214,15 +214,14 @@ (define-public terminology
|
|||
"terminology/terminology-" version ".tar.xz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0bbav27p1xni7kidgf3vn42bwsfrzds301k3f7c8dg7v5yyq9n2g"))
|
||||
"1aasddf2343qj798b5s8qwif3lxj4pyjax6fa9sfi6if9icdkkpq"))
|
||||
(modules '((guix build utils)))
|
||||
;; Remove the bundled fonts.
|
||||
(snippet
|
||||
'(begin
|
||||
(delete-file-recursively "data/fonts")
|
||||
(substitute* "data/meson.build"
|
||||
(("subdir\\('fonts'\\)") ""))
|
||||
#t))))
|
||||
(("subdir\\('fonts'\\)") ""))))))
|
||||
(build-system meson-build-system)
|
||||
(arguments
|
||||
`(#:configure-flags
|
||||
|
@ -234,7 +233,7 @@ (define-public terminology
|
|||
(modify-phases %standard-phases
|
||||
(add-after 'unpack 'set-home-directory
|
||||
;; FATAL: Cannot create run dir '/homeless-shelter/.run' - errno=2
|
||||
(lambda _ (setenv "HOME" "/tmp") #t))
|
||||
(lambda _ (setenv "HOME" "/tmp")))
|
||||
(replace 'check
|
||||
(lambda _
|
||||
(with-directory-excursion
|
||||
|
@ -245,8 +244,7 @@ (define-public terminology
|
|||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
;; This file is not meant to be installed.
|
||||
(delete-file (string-append (assoc-ref outputs "out")
|
||||
"/bin/tytest"))
|
||||
#t)))))
|
||||
"/bin/tytest")))))))
|
||||
(native-inputs
|
||||
`(("gettext" ,gettext-minimal)
|
||||
("perl" ,perl)
|
||||
|
|
Loading…
Reference in a new issue