1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
|
This is a complete rewrite of the original pcb2gcode in C++.
Quick Installation
***************
Fedora:
*) Open a terminal and cd to the extracted tarball
*) type the following:
su
<the root password>
yum groupinstall "Development Tools"
yum install automake autoconf libtool boost-devel gtkmm24-devel gerbv-devel
exit
./configure
make
su -c 'make install'
*) done.
Ubuntu:
*) Open a terminal and cd to the extracted tarball
*) type the following:
sudo apt-get install build-essential automake autoconf libtool libboost-all-dev libgtkmm-2.4-dev gerbv
<your own password>
./configure
make
sudo make install
*) done.
Installation from GIT (latest development version):
$ git clone git://pcb2gcode.git.sourceforge.net/gitroot/pcb2gcode/pcb2gcode
$ cd pcb2gcode
$ ./git-build.sh
$ sudo make install
For further details, see INSTALL and http://sourceforge.net/apps/mediawiki/pcb2gcode
|