gnu: arcan: Restyle format.
* gnu/packages/arcan.scm (arcan): Run 'guix style' over the package and manually break some long lines. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
This commit is contained in:
parent
076660f2ef
commit
c3e001f368
1 changed files with 101 additions and 99 deletions
|
@ -69,7 +69,8 @@
|
||||||
(url "https://github.com/letoram/arcan")
|
(url "https://github.com/letoram/arcan")
|
||||||
(commit version)))
|
(commit version)))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "14wwb7mgq8ab39dfprps7hzdz7a37r3cl8dc5q6m1r8n5daxyzgc"))
|
(base32
|
||||||
|
"14wwb7mgq8ab39dfprps7hzdz7a37r3cl8dc5q6m1r8n5daxyzgc"))
|
||||||
(modules '((guix build utils)))
|
(modules '((guix build utils)))
|
||||||
(snippet
|
(snippet
|
||||||
;; Remove some bundled packages.
|
;; Remove some bundled packages.
|
||||||
|
@ -88,7 +89,8 @@
|
||||||
(("/usr/local")
|
(("/usr/local")
|
||||||
(assoc-ref outputs "out")))))
|
(assoc-ref outputs "out")))))
|
||||||
;; Normally, it tries to fetch patched openal with git
|
;; Normally, it tries to fetch patched openal with git
|
||||||
;; but copying files manually in the right place seems to work too.
|
;; but copying files manually in the right place seems
|
||||||
|
;; to work too.
|
||||||
(add-after 'unpack 'prepare-static-openal
|
(add-after 'unpack 'prepare-static-openal
|
||||||
(lambda* (#:key inputs #:allow-other-keys)
|
(lambda* (#:key inputs #:allow-other-keys)
|
||||||
(let ((arcan-openal (assoc-ref inputs
|
(let ((arcan-openal (assoc-ref inputs
|
||||||
|
@ -103,8 +105,7 @@
|
||||||
(lambda _
|
(lambda _
|
||||||
(chdir "src") #t)))
|
(chdir "src") #t)))
|
||||||
#:tests? #f))
|
#:tests? #f))
|
||||||
(inputs
|
(inputs `(("bash-minimal" ,bash-minimal)
|
||||||
`(("bash-minimal" ,bash-minimal)
|
|
||||||
("espeak" ,espeak)
|
("espeak" ,espeak)
|
||||||
("ffmpeg" ,ffmpeg)
|
("ffmpeg" ,ffmpeg)
|
||||||
("freetype" ,freetype)
|
("freetype" ,freetype)
|
||||||
|
@ -133,20 +134,21 @@
|
||||||
("zlib" ,zlib)
|
("zlib" ,zlib)
|
||||||
;; To build arcan_lwa, we need a patched version of openal.
|
;; To build arcan_lwa, we need a patched version of openal.
|
||||||
;; https://github.com/letoram/arcan/wiki/packaging
|
;; https://github.com/letoram/arcan/wiki/packaging
|
||||||
("arcan-openal" ,(origin
|
("arcan-openal"
|
||||||
|
,(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(file-name "arcan-openal-0.6.2")
|
(file-name "arcan-openal-0.6.2")
|
||||||
(uri (git-reference
|
(uri (git-reference (url
|
||||||
(url "https://github.com/letoram/openal")
|
"https://github.com/letoram/openal")
|
||||||
(commit "0.6.2")))
|
(commit "0.6.2")))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0vg3fda47q2dk1n43ijcc64q39z044pa8h6scmfyi22g6r6bfw2z"))))))
|
"0vg3fda47q2dk1n43ijcc64q39z044pa8h6scmfyi22g6r6bfw2z"))))))
|
||||||
(native-inputs
|
(native-inputs (list pkg-config ruby)) ;For documentation and testing
|
||||||
(list pkg-config ruby)) ; For documentation and testing
|
|
||||||
(home-page "https://arcan-fe.com")
|
(home-page "https://arcan-fe.com")
|
||||||
(synopsis "Display server, multimedia framework and game engine")
|
(synopsis "Display server, multimedia framework and game engine")
|
||||||
(description "Arcan is a development framework for creating virtually
|
(description
|
||||||
|
"Arcan is a development framework for creating virtually
|
||||||
anything from user interfaces for specialized embedded applications
|
anything from user interfaces for specialized embedded applications
|
||||||
all the way to full-blown desktop environments. At its heart lies a multimedia
|
all the way to full-blown desktop environments. At its heart lies a multimedia
|
||||||
engine with a Lua scripting interface.")
|
engine with a Lua scripting interface.")
|
||||||
|
|
Reference in a new issue