[Csnd-dev] manual build
Date | 2017-03-25 06:16 |
From | Oeyvind Brandtsegg |
Subject | [Csnd-dev] manual build |
I have some updates to the manual, but can not seem to get it built here.
make html [ -d "" ] || ( \ echo "The XSL_BASE_PATH variable must be set to the XSL stylesheets installation directory" ; \ false ) The XSL_BASE_PATH variable must be set to the XSL stylesheets installation directory make: *** [xsl/customXHTMLchunk.xsl] Error 1 I did sudo apt-get install -y docbook xsltproc The readme says ''' If DocBook is installed in a nonstandard way, you may see this error: “The XSL_BASE_PATH variable must be set to the XSL stylesheets installation directory.” To tell make where to find DocBook, run make XSL_BASE_PATH=path/to/docbook/stylesheets ⟨target⟩ ''' I'm unsure what the path might be as I haven't set it explicitly, just installed docbook with apt-get readme says
Oeyvind Brandtsegg Professor of Music Technology NTNU 7491 Trondheim Norway Cell: +47 92 203 205 http://www.partikkelaudio.com/ http://crossadaptive.hf.ntnu.no http://gdsp.hf.ntnu.no/ http://soundcloud.com/brandtsegg http://flyndresang.no/ http://soundcloud.com/t-emp |
Date | 2017-03-25 09:31 |
From | Francois PINOT |
Subject | Re: [Csnd-dev] manual build |
sudo apt-get install docbook-xsl, I think Regards2017-03-25 7:16 GMT+01:00 Oeyvind Brandtsegg <oyvind.brandtsegg@ntnu.no>:
|
Date | 2017-03-25 16:57 |
From | Oeyvind Brandtsegg |
Subject | Re: [Csnd-dev] manual build |
Thanks, that got me one step further: oyvind@oyvind-Precision-M6800:/media/oyvind/OSDisk/Source/manual$ make html [ -d "/usr/share/xml/docbook/stylesheet/nwalsh/" ] || ( \ echo "The XSL_BASE_PATH variable must be set to the XSL stylesheets installation directory" ; \ false ) sed -e 's|@xsl_base_path@|/usr/share/xml/docbook/stylesheet/nwalsh/|' xsl/customXHTMLchunk.xsl.in > xsl/customXHTMLchunk.xsl mkdir -p examples-xml python csd2docbook.py Traceback (most recent call last): File "csd2docbook.py", line 23, in <module> from pygments.lexers import CsoundDocumentLexer, CsoundOrchestraLexer, CsoundScoreLexer, _csound_builtins ImportError: cannot import name CsoundDocumentLexer make: *** [examples-xml/stamp] Error 1 2017-03-25 10:31 GMT+01:00 Francois PINOT <fggpinot@gmail.com>:
Oeyvind Brandtsegg Professor of Music Technology NTNU 7491 Trondheim Norway Cell: +47 92 203 205 http://www.partikkelaudio.com/ http://crossadaptive.hf.ntnu.no http://gdsp.hf.ntnu.no/ http://soundcloud.com/brandtsegg http://flyndresang.no/ http://soundcloud.com/t-emp |
Date | 2017-03-25 17:14 |
From | Steven Yi |
Subject | Re: [Csnd-dev] manual build |
Perhaps this bit from the OSX directions in the README apply here: To install Pygments, enter in Terminal `sudo easy_install pygments`. If you have and older version of pygments installed, you might get an error message that CsoundDocumentLexer was not found. If so, you can updated your version of pygments using `easy_install —upgrade pygments`. On Sat, Mar 25, 2017 at 12:57 PM, Oeyvind Brandtsegg |
Date | 2017-03-25 17:56 |
From | Francois PINOT |
Subject | Re: [Csnd-dev] manual build |
pip install pygments should do it. François2017-03-25 18:14 GMT+01:00 Steven Yi <stevenyi@gmail.com>: Perhaps this bit from the OSX directions in the README apply here: |
Date | 2017-03-26 07:18 |
From | Oeyvind Brandtsegg |
Subject | Re: [Csnd-dev] manual build |
That was it. Thank you Steven. Should the same message be written in the Linux directions? I had pygments, but needed to upgrade: sudo pip install pygments --upgrade 2017-03-25 10:14 GMT-07:00 Steven Yi <stevenyi@gmail.com>: Perhaps this bit from the OSX directions in the README apply here: Oeyvind Brandtsegg Professor of Music Technology NTNU 7491 Trondheim Norway Cell: +47 92 203 205 http://www.partikkelaudio.com/ http://crossadaptive.hf.ntnu.no http://gdsp.hf.ntnu.no/ http://soundcloud.com/brandtsegg http://flyndresang.no/ http://soundcloud.com/t-emp |