gnu: scdoc: Set PREFIX instead of patching Makefile.
authorBrendan Tildesley <mail@brendan.scot>
Mon, 28 Oct 2019 15:46:33 +0000 (00:46 +0900)
committerMarius Bakke <mbakke@fastmail.com>
Mon, 28 Oct 2019 22:04:48 +0000 (23:04 +0100)
* gnu/packages/man.scm (scdoc)[arguments]: Set PREFIX instead of patching
Makefile with output path.

Signed-off-by: Marius Bakke <mbakke@fastmail.com>
gnu/packages/man.scm

index 86efe64..e7e14c5 100644 (file)
@@ -251,15 +251,11 @@ automatically.")
        "00zc3rzj97gscby31djlqyczvqpyhrl66i44czwzmmn7rc5j03m1"))))
    (build-system gnu-build-system)
    (arguments
-    `(#:make-flags '("CC=gcc")
+    `(#:make-flags
+      (list "CC=gcc" (string-append "PREFIX=" (assoc-ref %outputs "out")))
       #:phases
       (modify-phases %standard-phases
-        (delete 'configure)
-        (add-before 'install 'hardcode-paths
-          (lambda* (#:key outputs #:allow-other-keys)
-            (substitute* "Makefile"
-                         (("/usr/local") (assoc-ref outputs "out")))
-            #t)))))
+        (delete 'configure))))
    (home-page "https://git.sr.ht/~sircmpwn/scdoc")
    (synopsis "Simple man page generator")
    (description "scdoc is a simple man page generator written for POSIX systems