gnu: mig: Remove dependency on Perl.
* gnu/packages/hurd.scm (mig)[inputs]: Remove PERL. [arguments]: Remove 'patch-non-shebang-references' phase and add 'avoid-perl-dependency' phase.
This commit is contained in:
parent
cfda54c12f
commit
0b4837a95b
@ -3034,6 +3034,7 @@ memoized as a function of '%current-system'."
|
||||
("flex" ,flex-boot0)))
|
||||
(inputs `(("flex" ,flex-boot0)))
|
||||
(arguments
|
||||
;; TODO: On next rebuild cycle, reuse phases from 'mig'.
|
||||
`(#:configure-flags
|
||||
`(,(string-append "LDFLAGS=-Wl,-rpath="
|
||||
(assoc-ref %build-inputs "flex") "/lib/")))))))
|
||||
|
@ -122,19 +122,20 @@ GNU/Hurd."
|
||||
"1gyda8sq6b379nx01hkpbd85lz39irdvz2b9wbr63gicicx8i706"))))
|
||||
(build-system gnu-build-system)
|
||||
;; Flex is needed both at build and run time.
|
||||
(inputs (list gnumach-headers flex perl))
|
||||
(native-inputs
|
||||
(list flex bison))
|
||||
(inputs (list gnumach-headers flex))
|
||||
(native-inputs (list flex bison))
|
||||
(arguments
|
||||
(list #:tests? #f
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(add-after 'install 'patch-non-shebang-references
|
||||
(add-after 'install 'avoid-perl-dependency
|
||||
(lambda* (#:key build inputs outputs #:allow-other-keys)
|
||||
(let ((perl (assoc-ref inputs "perl"))
|
||||
(out (assoc-ref outputs "out")))
|
||||
(let ((out (assoc-ref outputs "out")))
|
||||
;; By default 'mig' uses Perl to compute
|
||||
;; 'libexecdir_rel'. Avoid it.
|
||||
(substitute* (string-append out "/bin/mig")
|
||||
(("perl ") (string-append perl "/bin/perl ")))))))))
|
||||
(("^libexecdir_rel=.*")
|
||||
"libexecdir_rel=../libexec\n"))))))))
|
||||
(home-page "https://www.gnu.org/software/hurd/microkernel/mach/mig/gnu_mig.html")
|
||||
(synopsis "Mach 3.0 interface generator for the Hurd")
|
||||
(description
|
||||
|
Loading…
Reference in New Issue
Block a user