Advertisement
karamaz0v

Build ygraph in Archlinux

Nov 19th, 2013
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.62 KB | None | 0 0
  1. #steps to build in Archlinux x86_64 the package ygraph from
  2. #http://cactuscode.org/documentation/visualization/yGraph/
  3. #install svn, autoconf, gtk+ 2,
  4. #the list is not extensive, check the source docs for any extra packages
  5.  
  6. $ svn co https://svn.cactuscode.org/VizTools/ygraph/trunk ygraph
  7. $ cd ygraph
  8. $ gettextize -c --no-changelog --intl
  9. $ aclocal -I m4
  10. $ autoreconf -i
  11. $ ./configure
  12.  
  13. #edit src/Makefile
  14. #modify line 187
  15. CFLAGS = -g -O2
  16. #to look like this
  17. CFLAGS = -g -O2 -lm
  18.  
  19. #then
  20. $ make
  21.  
  22. #you'll get an error when building the documentation, but the binary was succesfully built and is in
  23. #src/  directory
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement