On Sunday, June 19, 2011 10:33:48 pm John Jason Jordan wrote: > I've been using Linux for years, but have never actually compiled a > program. Now I want to build the current 1.5.0 on Fedora 14, x86_64. > > I found this page with instructions: > > http://wiki.scribus.net/canvas/Official:Compile_with_CMake > > I installed Cmake 2.8.4-1.fc14. > > Then the instructions say "Let's assume the following: *Scribus source > is in a directory like /home/username/scribussource/." I created the > folder, but I can't figure out what files are needed for the "source" > or where to get them. I guess I'm supposed to know what source files > look like, but I don't. Can someone point me in the right direction? > > ___ > Scribus Mailing List: scribus at lists.scribus.net > Edit your options or unsubscribe: > http://lists.scribus.net/mailman/listinfo/scribus > See also: > http://wiki.scribus.net > http://forums.scribus.net
Here is a cookbook solution: Here is my Slackware Linux script which runs nightly. Before running the script you need to have a directory /usr/local/src/s150. --------------------------------------------------------- cd /usr/local/src/ rm -r s150/* svn co svn://scribus.net/trunk/Scribus s150 cd s150 cmake . -DCMAKE_INSTALL_PREFIX:PATH=/usr/local/scribus_svn # -DWANT_SCRIPTER2=1 # -DWANT_GRAPHICSMAGICK=1 make make install cd scribus rm /usr/local/bin/scrib5 ln scribus /usr/local/bin/scrib5 ------------------------------------------------------------ Note that I call Scribus 1.5.0 "scrib5" to avoid name conflicts. The two lines commented out caused problems with cmake. I have a similar script for Scribus 1.4.0 etc. Have fun! -- John Culleton "Death Wore Black" Police procedural: http://www.deathworeblack.com/ "Create Book Covers with Scribus" http://booklocker.com/books/4055.html -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.scribus.net/pipermail/scribus/attachments/20110620/370e3eb6/attachment.html>
