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 38 39 40 41 42 43 44 45 46 47
|
This is a complete rewrite of the original pcb2gcode in C++.
Quick Installation
***************
Archlinux:
pcb2gcode stable 1.1.3 -> https://aur.archlinux.org/packages.php?ID=50457
pcb2gcode git 1.1.4 -> https://aur.archlinux.org/packages.php?ID=55198
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.
Debian, Ubuntu:
There are pcb2gcode packages in the official repositories.
The Ubuntu ones are outdated (1.1.2) as of 26-12-2011, I recommend installing 1.1.4 from source.
*) 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
|