HowTo Use The Subversion System (SVN)

About:

This is a usual system to manage a project, it gives tools to administrate changes and revisions in an easy way. Using SVN, the contributors can make changes and tell each other what and why she/he did it.

As other projects, DRLibs uses these tools provided by SourceForge.Net. Just visit this link to see the online browser.


HowTo Use It:

Note: This example is thought for unix-like operating systems.

  • 1st Step: Create a new directory somewhere in your system and get inside it, for example:

    $ mkdir /tmp/mydir
    $ cd /tmp/mydir
  • 2nd Step: Download the version that you want to compile and use, for example the version 0.6.1:

    $ svn checkout https://drlibs.svn.sourceforge.net/svnroot/drlibs/DRLibs-0.6.1 .
  • 3nd Step: Compile it:

    $ ./configure
    $ make