gnu: docbook-xsl write absolute file:// uris in catalogs instead of ./ relative ones

* gnu/packages/docbook.scm (docbook-xsl):  Replace ./ paths with file:// uris
This commit is contained in:
John Darrington 2014-07-13 17:15:47 +02:00
parent a6639cf7f2
commit 7f4bf03034
1 changed files with 8 additions and 5 deletions

View File

@ -100,7 +100,7 @@ by no means limited to these applications.) This package provides XML DTDs.")
"0rxl013ncmz1n6ymk2idvx3hix9pdabk8xn01cpcv32wmfb753y9"))))
(build-system trivial-build-system)
(arguments
`(#:builder (begin
`(#:builder (let ((name-version (string-append ,name "-" ,version)))
(use-modules (guix build utils))
(let* ((bzip2 (assoc-ref %build-inputs "bzip2"))
@ -112,10 +112,13 @@ by no means limited to these applications.) This package provides XML DTDs.")
(system* (string-append tar "/bin/tar") "xvf" source)
(mkdir-p xsl)
(copy-recursively (string-append ,name "-" ,version)
(string-append xsl "/" ,name
"-" ,version))))
#:modules ((guix build utils))))
(copy-recursively name-version
(string-append xsl "/" name-version))
(substitute* (string-append xsl "/" name-version "/catalog.xml")
(("rewritePrefix=\"./")
(string-append "rewritePrefix=\"file://" xsl "/" name-version "/")))))
#:modules ((guix build utils))))
(native-inputs `(("bzip2" ,bzip2)
("tar" ,tar)))
(home-page "http://docbook.org")