gnu: dolphin-emu: Shorten the source snippet.

* gnu/packages/emulators.scm (dolphin-emu): Rewrite the source snippet
to be more compact.
master
Efraim Flashner 2018-02-22 20:42:11 +02:00
parent e89bfc2dfd
commit 8528080405
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 13 additions and 27 deletions

View File

@ -119,33 +119,19 @@
(url "https://github.com/dolphin-emu/dolphin.git")
(commit commit)))
(file-name (git-file-name name version))
(modules '((guix build utils)))
(snippet
'(begin
(for-each delete-file-recursively
;; Remove external stuff we don't need.
'("Externals/LZO"
"Externals/OpenAL"
"Externals/Qt"
"Externals/SFML"
"Externals/SOIL"
"Externals/curl"
"Externals/ffmpeg"
"Externals/gettext"
"Externals/hidapi"
"Externals/libpng"
"Externals/libusb"
"Externals/mbedtls"
"Externals/miniupnpc"
"Externals/wxWidgets3"
"Externals/zlib"))
;; Clean up source.
(for-each delete-file (find-files "." "\\.bin$"))
(for-each delete-file (find-files "." "\\.dsy$"))
(for-each delete-file (find-files "." "\\.exe$"))
(for-each delete-file (find-files "." "\\.jar$"))
(for-each delete-file (find-files "." "\\.rar$"))
#t))
(modules '((guix build utils)))
(snippet
'(begin
;; Remove external stuff we don't need.
(for-each (lambda (dir)
(delete-file-recursively
(string-append "Externals/" dir)))
'("LZO" "OpenAL" "Qt" "SFML" "SOIL" "curl" "ffmpeg"
"gettext" "hidapi" "libpng" "libusb" "mbedtls"
"miniupnpc" "wxWidgets3" "zlib"))
;; Clean up source.
(for-each delete-file (find-files "." ".*\\.(bin|dsy|exe|jar|rar)$"))
#t))
(sha256
(base32
"0g725wmhlim73zrhi47wmr1bmplpy4b7sbimd5pm8xpfhj5nm10l"))))