gnu: duktape: Use G-expressions.
* gnu/packages/javascript.scm (duktape)[arguments]: Rewrite as G-expressions.
This commit is contained in:
parent
9305d17609
commit
2c975efe83
1 changed files with 22 additions and 17 deletions
|
@ -828,11 +828,16 @@ Javascript and a small built-in standard library with C library wrappers.")
|
|||
"19szwxzvl2g65fw95ggvb8h0ma5bd9vvnnccn59hwnc4dida1x4n"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
`(#:tests? #f ; No tests.
|
||||
#:make-flags (list "-f" "Makefile.sharedlibrary"
|
||||
(string-append "INSTALL_PREFIX=" %output))
|
||||
(list #:tests? #f ; No tests.
|
||||
#:make-flags
|
||||
#~(list "-f" "Makefile.sharedlibrary"
|
||||
(string-append "INSTALL_PREFIX="
|
||||
;; XXX Replace with #$output on core-updates.
|
||||
#$(if (%current-target-system)
|
||||
#~#$output
|
||||
#~%output)))
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
#~(modify-phases %standard-phases
|
||||
(delete 'configure)
|
||||
;; At least another major GNU/Linux distribution carries their own
|
||||
;; .pc file with this package.
|
||||
|
@ -852,7 +857,7 @@ Javascript and a small built-in standard library with C library wrappers.")
|
|||
Version: ~a~@
|
||||
Libs: -L${libdir} -lduktape~@
|
||||
Cflags: -I${includedir}~%"
|
||||
out ,version)))))))))
|
||||
out #$version)))))))))
|
||||
(home-page "https://duktape.org/")
|
||||
(synopsis "Small embeddable Javascript engine")
|
||||
(description "Duktape is an embeddable Javascript engine, with a focus on
|
||||
|
|
Reference in a new issue