-
Notifications
You must be signed in to change notification settings - Fork 48
Build Debian Packages
Romuald Conty edited this page Jun 13, 2020
·
5 revisions
HeeksCAD requires libarea
, this section will explain how to build and install libarea using the Debian way.
sudo apt install git build-essential debhelper cmake libboost-python-dev python-dev
git clone https://github.com/Heeks/libarea.git
cd libarea
dpkg-buildpackage -b -us -uc
This will produces 3 packages: libarea0
, libarea-dev
and python-area
.
cd ..
sudo dpkg -i libarea*.deb python-area*.deb
When libarea is correctly installed, we can build HeeksCAD packages the same way.
sudo apt install liboce-visualization-dev libwxgtk3.0-dev libgtkglext1-dev python-dev
git clone https://github.com/Heeks/heekscad.git
cd heekscad
dpkg-buildpackage -b -us -uc
This will produces 4 packages: heekscad
, heekscad-dev
, libheekstinyxml0
and libheekstinyxml-dev
If you want a fully translated version:
sudo apt-get install wx3.0-i18n
cd ..
sudo dpkg -i *heeks*.deb
If you want to use HeeksCNC, CAM plugin, have a look to: https://github.com/Heeks/heekscnc/wiki/Build-Debian-Packages