gnu: guile-commonmark: Install .scm files in the right place.

Previously they'd be installed in PREFIX/share/share/guile/site.

* gnu/packages/guile.scm (guile-commonmark)[modules, snippet]: New
fields.
master
Ludovic Courtès 2019-01-15 09:54:08 +01:00
parent 6aa4f09eb6
commit 74a8b2cca1
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 10 additions and 1 deletions

View File

@ -1637,7 +1637,16 @@ you send to a FIFO file.")
"/" name "-" version ".tar.gz"))
(sha256
(base32
"0kzclwkfijj8xka3g9kfj53y67c34ndfy84swdbw3j7y962ndxq6"))))
"0kzclwkfijj8xka3g9kfj53y67c34ndfy84swdbw3j7y962ndxq6"))
(modules '((guix build utils)))
(snippet
;; Install .scm files in the right place (see
;; <https://github.com/OrangeShark/guile-commonmark/issues/12>.)
'(begin
(substitute* "Makefile.in"
(("^moddir = \\$\\(datadir\\)/share")
"moddir = $(datadir)"))
#t))))
(build-system gnu-build-system)
(inputs
`(("guile" ,guile-2.2)))