* Container based build environments * Initial commit for support of Arch and Manjaro Linux distros * Removed openSUSE as shiboken is not supported in 15.3 * Added system updates to container image build * Removed duplicates and ordered packages for easy reference * Updated documenation for openSUSE and package installation. Added documentation on how to install packages outside of conatiners Removed references to openSUSE due to missing dependancies. * Matched debian and ubuntu install script for eaiser comparison * Fixed error of image realease from latest to rolling Ubuntu's "latest" tag is to their LTS distribution release rather than their current cutting edge distro release. * Update debian.sh Remove unneeded deps and remove libboost-all-dev * Update ubuntu.sh Remove unneeded deps and remove libboost-all-dev Co-authored-by: Christopher West <cwest@thedigitaledge.co.uk> Co-authored-by: Kurt Kremitzki <kkremitzki@users.noreply.github.com>
16 lines
1014 B
Bash
Executable File
16 lines
1014 B
Bash
Executable File
#!/bin/sh
|
|
apt-get install --no-install-recommends --yes build-essential cmake doxygen \
|
|
git libboost-date-time-dev libboost-dev libboost-filesystem-dev \
|
|
libboost-graph-dev libboost-iostreams-dev libboost-program-options-dev \
|
|
libboost-python-dev libboost-regex-dev libboost-serialization-dev \
|
|
libboost-thread-dev libcoin-dev libeigen3-dev libgtkglext1-dev libgts-dev \
|
|
libkdtree++-dev libkml-dev libmedc-dev libocct-data-exchange-dev \
|
|
libocct-draw-dev libocct-foundation-dev libocct-modeling-algorithms-dev \
|
|
libocct-modeling-data-dev libocct-ocaf-dev libocct-visualization-dev \
|
|
libopencv-dev libproj-dev libpyside2-dev libqt5svg5-dev libqt5webkit5-dev \
|
|
libqt5xmlpatterns5-dev libshiboken2-dev libvtk9-dev libvtk9-qt-dev \
|
|
libvtk-dicom-dev libx11-dev libxerces-c-dev libxmu-dev libxmuu-dev \
|
|
libzipios++-dev netgen netgen-headers pyside2-tools python3-dev \
|
|
python3-matplotlib python3-pivy python3-pyside2.qtuitools qtchooser \
|
|
qttools5-dev shiboken2 swig
|