gnu: tilda: Update to 1.4.1.
* gnu/packages/terminals.scm (tilda): Update to 1.4.1. [arguments]: Rename 'autogen phase to 'bootstrap. Clean up 'bootstrap phase.master
parent
32b7ccf9b4
commit
9760061315
|
@ -1,5 +1,5 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
;;; Copyright © 2015, 2016, 2017 Efraim Flashner <efraim@flashner.co.il>
|
;;; Copyright © 2015, 2016, 2017, 2018 Efraim Flashner <efraim@flashner.co.il>
|
||||||
;;; Copyright © 2016 Mckinley Olsen <mck.olsen@gmail.com>
|
;;; Copyright © 2016 Mckinley Olsen <mck.olsen@gmail.com>
|
||||||
;;; Copyright © 2016, 2017 Alex Griffin <a@ajgrf.com>
|
;;; Copyright © 2016, 2017 Alex Griffin <a@ajgrf.com>
|
||||||
;;; Copyright © 2016 David Craven <david@craven.ch>
|
;;; Copyright © 2016 David Craven <david@craven.ch>
|
||||||
|
@ -65,22 +65,21 @@
|
||||||
(define-public tilda
|
(define-public tilda
|
||||||
(package
|
(package
|
||||||
(name "tilda")
|
(name "tilda")
|
||||||
(version "1.3.3")
|
(version "1.4.1")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "https://github.com/lanoxx/tilda/archive/"
|
(uri (string-append "https://github.com/lanoxx/tilda/archive/"
|
||||||
"tilda-" version ".tar.gz"))
|
"tilda-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1cc4qbg1m3i04lj5p6i6xbd0zvy1320pxdgmjhz5p3j95ibsbfki"))))
|
"0w2hry2bqcqrkik4l100b1a9jlsih6sq8zwhfpl8zzfq20i00lfs"))))
|
||||||
(build-system glib-or-gtk-build-system)
|
(build-system glib-or-gtk-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases (modify-phases %standard-phases
|
'(#:phases (modify-phases %standard-phases
|
||||||
(add-before 'patch-source-shebangs 'autogen
|
(add-before 'patch-source-shebangs 'bootstrap
|
||||||
(lambda _ ; Avoid running ./configure.
|
(lambda _
|
||||||
(substitute* "autogen.sh"
|
(setenv "NOCONFIGURE" "true")
|
||||||
(("^.*\\$srcdir/configure.*") ""))
|
(invoke "sh" "autogen.sh"))))))
|
||||||
(zero? (system* "sh" "autogen.sh")))))))
|
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("autoconf" ,autoconf)
|
`(("autoconf" ,autoconf)
|
||||||
("automake" ,automake)
|
("automake" ,automake)
|
||||||
|
|
Reference in New Issue