KiCAD installieren

cd /usr
mkdir /src
cd /usr/src
tar xzf cmake-2.8.5.tar.gz
cd cmake-2.8.5
mkdir build
cd build
../bootstrap --prefix=/usr/cmake
make
make install
PATH=$PATH:/usr/cmake/bin
export PATH
cd /usr/src
tar xzf wxWidgets-2.8.12.tar.gz
cd wxWidgets-2.8.12
mkdir buildwx
cd buildwx
../configure --enable-unicode --enable-aui --enable-monolithic --disable-shared --with-msw --with-opengl --prefix=/usr/wxWidgets
make
make install
PATH=$PATH:/usr/wxWidgets/bin
export PATH
cd /usr/src
tar xzf zlib-1.2.5.tar.gz 
cd zlib-1.2.5
make -f win32/Makefile.gcc
cd /usr/src
tar xjf kicad-20110607-r3015-source.tbz2
cd kicad-20110607-r3015-source
vim ../common/build_version.cpp
mkdir build
cd build
cmake -G "MSYS Makefiles" -DCMAKE_BUILD_TYPE=Release -DKICAD_STABLE_VERSION=ON -DwxWidgets_ROOT_DIR=/usr/wxWidgets -DCMAKE_INSTALL_PREFIX=/user/kicad -DZLIB_LIBRARY:FILEPATH=/usr/src/zlib-1.2.5/zlib1.dll -DZLIB_INCLUDE_DIR:PATH=/usr/src/zlib-1.2.5 ..
make
make install
#define KICAD_BUILD_VERSION "(2011-06-07)"
#define VERSION_STABILITY "special edition"

Leave a Reply

Your email address will not be published. Required fields are marked *