gnu: toot: Don't install the Makefile.
* gnu/packages/mastodon.scm (toot)[arguments]: Add custom phase to prevent installing data_files.
This commit is contained in:
parent
31263ec227
commit
8566d8793b
|
@ -42,6 +42,12 @@
|
|||
'(#:phases
|
||||
(modify-phases %standard-phases
|
||||
(delete 'check)
|
||||
;; see https://github.com/ihabunek/toot/issues/91
|
||||
(add-after 'unpack 'dont-install-Makefile
|
||||
(lambda _
|
||||
(substitute* "setup.py"
|
||||
(("data_files.*" all) ""))
|
||||
#t))
|
||||
(add-after 'install 'check
|
||||
(lambda* (#:key inputs outputs #:allow-other-keys)
|
||||
(add-installed-pythonpath inputs outputs)
|
||||
|
|
Loading…
Reference in New Issue