summaryrefslogtreecommitdiff
path: root/gnu/packages/debug.scm
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <me@tobias.gr>2017-03-13 16:19:06 +0100
committerTobias Geerinckx-Rice <me@tobias.gr>2017-03-15 22:19:39 +0100
commitf38607536e10f8991bf67d4f6dc5e0632f206f47 (patch)
treeafc0f26bdbd9b67a7ca5bcdef7872e4f9a0dac2a /gnu/packages/debug.scm
parent618e4bfbad0740c4addc9e88d9667d5dc65b0bce (diff)
gnu: Use INSTALL-FILE where appropriate.
* gnu/packages/admin.scm (wpa-supplicant-minimal): Substitute the simpler INSTALL-FILE for COPY-FILE when invoked with redundant arguments. * gnu/packages/bioinformatics.scm (couger, aragorn, express-beta-diversity, edirect, fasttree, rsem, samtools-0.1): Likewise. * gnu/packages/code.scm (withershins): Likewise. * gnu/packages/conky.scm (conky): Likewise. * gnu/packages/debug.scm (delta, american-fuzzy-lop): Likewise. * gnu/packages/emacs.scm (emacs-mit-scheme-doc): Likewise. * gnu/packages/engineering.scm (librecad): Likewise.
Diffstat (limited to 'gnu/packages/debug.scm')
-rw-r--r--gnu/packages/debug.scm14
1 files changed, 7 insertions, 7 deletions
diff --git a/gnu/packages/debug.scm b/gnu/packages/debug.scm
index 6278f661ef3..27193c8bba1 100644
--- a/gnu/packages/debug.scm
+++ b/gnu/packages/debug.scm
@@ -68,10 +68,10 @@
68 (mkdir-p bin) 68 (mkdir-p bin)
69 (mkdir-p doc) 69 (mkdir-p doc)
70 (for-each (lambda (h) 70 (for-each (lambda (h)
71 (copy-file h (string-append doc "/" (basename h)))) 71 (install-file h doc))
72 `("License.txt" ,@(find-files "www" ".*\\.html"))) 72 `("License.txt" ,@(find-files "www" ".*\\.html")))
73 (for-each (lambda (b) 73 (for-each (lambda (b)
74 (copy-file b (string-append bin "/" b))) 74 (install-file b bin))
75 `("delta" "multidelta" "topformflat"))))) 75 `("delta" "multidelta" "topformflat")))))
76 (alist-delete 'configure %standard-phases)))) 76 (alist-delete 'configure %standard-phases))))
77 (home-page "http://delta.tigris.org/") 77 (home-page "http://delta.tigris.org/")
@@ -212,13 +212,13 @@ tools that process C/C++ code.")
212 (system* "tar" "xf" 212 (system* "tar" "xf"
213 (assoc-ref inputs "afl-src"))) 213 (assoc-ref inputs "afl-src")))
214 (error "tar failed to unpack afl-src")) 214 (error "tar failed to unpack afl-src"))
215 (copy-file (string-append patch-dir 215 (install-file (string-append patch-dir
216 "/afl-qemu-cpu-inl.h") 216 "/afl-qemu-cpu-inl.h")
217 "./afl-qemu-cpu-inl.h") 217 ".")
218 (copy-file (string-append afl-dir "/config.h") 218 (copy-file (string-append afl-dir "/config.h")
219 "./afl-config.h") 219 "./afl-config.h")
220 (copy-file (string-append afl-dir "/types.h") 220 (install-file (string-append afl-dir "/types.h")
221 "./types.h") 221 ".")
222 (substitute* "afl-qemu-cpu-inl.h" 222 (substitute* "afl-qemu-cpu-inl.h"
223 (("\\.\\./\\.\\./config.h") "afl-config.h")) 223 (("\\.\\./\\.\\./config.h") "afl-config.h"))
224 (substitute* (string-append patch-dir 224 (substitute* (string-append patch-dir