gnu: tipp10: Adjust phases.
* gnu/packages/education.scm (tipp10)[arguments]: Return #t for "disable-new-version-check"; fix indentation.
This commit is contained in:
parent
9e39ac415d
commit
7cc9847324
|
@ -161,22 +161,23 @@ of categories with some of the activities available in that category.
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(add-after 'unpack 'disable-new-version-check
|
(add-after 'unpack 'disable-new-version-check
|
||||||
(lambda _
|
(lambda _
|
||||||
;; Make new version check to default to false.
|
;; Make new version check to default to false.
|
||||||
;; TODO: Remove the checkbox from the dialog and the check itself
|
;; TODO: Remove the checkbox from the dialog and the check itself
|
||||||
(substitute* '("widget/settingspages.cpp" "widget/mainwindow.cpp")
|
(substitute* '("widget/settingspages.cpp" "widget/mainwindow.cpp")
|
||||||
(("settings.value(\"check_new_version\", true)")
|
(("settings.value(\"check_new_version\", true)")
|
||||||
"settings.value(\"check_new_version\", false)"))))
|
"settings.value(\"check_new_version\", false)"))
|
||||||
|
#t))
|
||||||
(replace 'configure
|
(replace 'configure
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
(let ((out (assoc-ref outputs "out")))
|
(let ((out (assoc-ref outputs "out")))
|
||||||
;; Make program honor $PREFIX
|
;; Make program honor $PREFIX
|
||||||
(substitute* "tipp10.pro"
|
(substitute* "tipp10.pro"
|
||||||
(("\\.path = /usr/") (string-append ".path = " out "/")))
|
(("\\.path = /usr/") (string-append ".path = " out "/")))
|
||||||
(substitute* "def/defines.h"
|
(substitute* "def/defines.h"
|
||||||
(("\"/usr/") (string-append "\"" out "/")))
|
(("\"/usr/") (string-append "\"" out "/")))
|
||||||
;; Recreate Makefile
|
;; Recreate Makefile
|
||||||
(zero? (system* "qmake"))))))))
|
(zero? (system* "qmake"))))))))
|
||||||
(inputs
|
(inputs
|
||||||
`(("qt4" ,qt-4)
|
`(("qt4" ,qt-4)
|
||||||
("sqlite" ,sqlite)))
|
("sqlite" ,sqlite)))
|
||||||
|
|
Loading…
Reference in New Issue