Re: Developing Slackware installation procedure
Posted by
R. van Twisk on
Jun 28, 2011; 3:54pm
URL: https://forum.librecad.org/Developing-Slackware-installation-procedure-tp4530576p4532289.html
Charles,
I will take care of the breaks later today.
This seems to be a issue with the highlighter plugin we are using..
Ries
On Jun 28, 2011, at 10:45 AM, catkin [via LibreCAD] wrote:
Thanks Ries and showard314 
That was exactly my error. After fixing that:
[compilation completed]
scripts/postprocess-unix.sh
Reading collection config file...
Generating help for LibreCADdoc.qhp...
Building up file structure...
Insert custom filters...
Insert help data for filter section (1 of 1)...
Insert files...
Warning: The file /home/c/d/Repository/src/git/LibreCAD/support/doc/appendix_LibreCAD1.html does not exist! Skipping it.
Insert contents...
Insert indices...
Documentation successfully generated.
Creating collection file...
Updating '/home/c/d/Repository/src/git/LibreCAD/ts/librecad_cs.qm'...
Generated 1556 translation(s) (1448 finished and 108 unfinished)
[snip similar for other languages]
Ignored 184 untranslated source text(s)
lrelease error: Cannot open /home/c/d/Repository/src/git/LibreCAD/ts/librecad_sv.ts: No such file or directory
After that I tested the build by runningcd unix && ./librecad
It opened LibreCAD OK; it looked fine and I drew a few lines OK. 
Installing LibreCAD from source would be easier to follow if the commands which should be on separate lines were shown on separate lines or the commands were separated by appropriate shell metacharacters (and the Java syntax highlighting could be removed because it is not meaningful). For example
cd ~ mkdir source cd source git clone <a href="git://github.com/LibreCAD/LibreCAD.git">git://github.com/LibreCAD/LibreCAD.git
would be
cd ~ && mkdir source && cd source && git clone <a href="git://github.com/LibreCAD/LibreCAD.git">git://github.com/LibreCAD/LibreCAD.git
and
cd LibreCAD qmake make
would become
cd LibreCAD && qmake && make
or, if qmake return code is not useful/reliable, simply
cd LibreCAD && qmake; make
I am willing to change the page.
Best
Charles