Installing tovid
From Tovid Wiki
This page provides download links and instructions for installing tovid.
[edit] Platform-specific instructions
For easiest installation, use the platform-specific instructions:
Other available package formats (no instructions yet):
- SuSE RPM repository
- Fedora Core yum enabled repository NOTE: As of March 14, 2007 the todiscgui.desktop file (fedora-tovid-todisc.desktop) in the Fedora rpm is broken. Edit and set Terminal=true instead of Terminal=false.
If you have created a tovid package, please become a packager and add links/instructions above.
[edit] Use the source
For platform-independent installation, use the source .tar.gz. First install all tovid dependencies, to prevent potential problems.
Next, download tovid-0.31.tar.gz. This tarball contains everything you need to run tovid and the GUI. Save this somewhere on your computer (for now, we'll assume it's saved in ~/Downloads/).
To extract the tarball, open a terminal window (such as XTerm, RXVT, or Konsole) and type the following commands, substituting for ~/Downloads the path where you saved the .tar.gz:
$ cd ~/Downloads $ tar -xzvf tovid-0.31.tar.gz
The installation files will go into a subdirectory tovid-0.31 within the current directory. Next, check to see if there are any patches that need to be made by looking at the Official Patches Sticky in the forums. Follow any instructions you find there, keeping in mind you only need patches for tovid-0.31.
Finally, do the following:
$ cd ~/Downloads/tovid-0.31 $ ./configure $ su -c "make install"
You will be prompted for the root password to install tovid system-wide. If you decide you don't want tovid installed anymore, run make uninstall from the original installation directory (~/Downloads/tovid-0.31) as root.
[edit] Subversion
For life on the bleeding edge, you can get a copy of the latest development version of tovid. The easiest way is to download the most recent quick-release, and install it as you would a normal release. These quick-releases are just like official releases, except more haphazard.
The best way is to use Subversion (SVN) to get the latest code directly from the development repository. You'll need the tool used to make the manpages: txt2tags. Again, assuming you want to put the tovid installer in ~/Downloads:
$ cd ~/Downloads $ svn checkout http://tovid.googlecode.com/svn/trunk/tovid tovid $ cd tovid $ ./bootstrap $ ./configure $ su -c "make install"
You should now have the latest version installed (bugs and all!) You can keep in sync with updates by doing:
$ cd ~/Downloads/tovid $ svn update $ ./bootstrap
followed by a re-install (./configure && su -c "make install"). See the SVN crash course for more about dealing with SVN. If you install from SVN, you're strongly encouraged to start hanging out with the developers on the IRC channel, or on the tovid forum, to get involved with development. Even if you don't know the first thing about code, your input is needed. (Do you really want to leave tovid in the hands of a bunch of code monkeys?)
Check out the Development plans and talk page.
