gnu: mypaint-brushes: Fix build.
* gnu/packages/gimp.scm (mypaint-brushes)[arguments]: Remove bootstrap phase; add "relax-dependency-version" phase.
This commit is contained in:
parent
d2e1da18b0
commit
5686be393b
1 changed files with 7 additions and 3 deletions
|
@ -284,10 +284,14 @@ (define-public mypaint-brushes
|
||||||
"055j2rgkav2024zl6y5hxb2ra0vbx58607d6sz7ml2351r1bcjvh"))))
|
"055j2rgkav2024zl6y5hxb2ra0vbx58607d6sz7ml2351r1bcjvh"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:phases
|
`(#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(add-after 'unpack 'bootstrap
|
(add-after 'unpack 'relax-dependency-version
|
||||||
(lambda _ (invoke "sh" "./autogen.sh"))))))
|
(lambda _
|
||||||
|
(substitute* "autogen.sh"
|
||||||
|
(("automake-1.13") "automake")
|
||||||
|
(("aclocal-1.13") "aclocal"))
|
||||||
|
#t)))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("autoconf" ,autoconf)
|
`(("autoconf" ,autoconf)
|
||||||
("automake" ,automake)))
|
("automake" ,automake)))
|
||||||
|
|
Loading…
Reference in a new issue