gnu: scintilla: Use G-expressions.
* gnu/packages/text-editors.scm (scintilla)[arguments]: Use G-expressions.
parent
3959714df3
commit
ed8d236eb9
|
@ -910,22 +910,23 @@ Octave. TeXmacs is completely extensible via Guile.")
|
||||||
(base32 "0x8rw1mnhd3la9xznkag6rymskkd85m3c1wyw2qw0zm89yzqq0mr"))))
|
(base32 "0x8rw1mnhd3la9xznkag6rymskkd85m3c1wyw2qw0zm89yzqq0mr"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:make-flags (list "GTK3=1"
|
(list
|
||||||
,(string-append "CC=" (cc-for-target))
|
#:make-flags
|
||||||
|
#~(list "GTK3=1"
|
||||||
|
(string-append "CC=" #$(cc-for-target))
|
||||||
"-Cgtk")
|
"-Cgtk")
|
||||||
#:tests? #f ;require un-packaged Pyside
|
#:tests? #f ;require un-packaged Pyside
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
#~(modify-phases %standard-phases
|
||||||
(delete 'configure) ;no configure script
|
(delete 'configure) ;no configure script
|
||||||
(replace 'install
|
(replace 'install
|
||||||
;; Upstream provides no install script.
|
;; Upstream provides no install script.
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(lambda _
|
||||||
(let* ((out (assoc-ref outputs "out"))
|
(let ((lib (string-append #$output "/lib"))
|
||||||
(lib (string-append out "/lib"))
|
(inc (string-append #$output "/include")))
|
||||||
(include (string-append out "/include")))
|
|
||||||
(for-each (lambda (f) (install-file f lib))
|
(for-each (lambda (f) (install-file f lib))
|
||||||
(find-files "bin/" "\\.so$"))
|
(find-files "bin/" "\\.so$"))
|
||||||
(for-each (lambda (f) (install-file f include))
|
(for-each (lambda (f) (install-file f inc))
|
||||||
(find-files "include/" "."))))))))
|
(find-files "include/" "."))))))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list pkg-config python-wrapper))
|
(list pkg-config python-wrapper))
|
||||||
|
|
Reference in New Issue