* rework of Linux build scripts * change to ninja build system * distribution specific logic broken out * n/9 progress entries make no sense, removing * {}'ing all variables * sorting help output * sorting package lists * project doesn't use submodules, removing logic Signed-off-by: Jamin W. Collins <jamin.collins@gmail.com> * drop gtk-2 Signed-off-by: Jamin W. Collins <jamin.collins@gmail.com> * further refinements of BuildLinux.sh Signed-off-by: Jamin W. Collins <jamin.collins@gmail.com> --------- Signed-off-by: Jamin W. Collins <jamin.collins@gmail.com>
44 lines
795 B
Text
44 lines
795 B
Text
# these are the Arch Linux specific build functions
|
|
FOUND_GTK3=$(pacman -Q gtk3)
|
|
|
|
# Addtional Dev packages for OrcaSlicer
|
|
export REQUIRED_DEV_PACKAGES=(
|
|
cmake
|
|
curl
|
|
dbus
|
|
eglexternalplatform
|
|
extra-cmake-modules
|
|
file
|
|
gettext
|
|
git
|
|
glew
|
|
gstreamer
|
|
gstreamermm
|
|
gtk3
|
|
libmspack
|
|
libsecret
|
|
mesa
|
|
ninja
|
|
openssl
|
|
texinfo
|
|
wayland-protocols
|
|
webkit2gtk
|
|
wget
|
|
)
|
|
|
|
if [[ -n "$UPDATE_LIB" ]]
|
|
then
|
|
echo -n -e "Updating linux ...\n"
|
|
NEEDED_PKGS=""
|
|
for PKG in ${REQUIRED_DEV_PACKAGES[@]}; do
|
|
pacman -Q ${PKG} > /dev/null || NEEDED_PKGS+=" ${PKG}"
|
|
done
|
|
|
|
if [ -n "${NEEDED_PKGS}" ]; then
|
|
sudo pacman -Syy --noconfirm ${NEEDED_PKGS}
|
|
fi
|
|
echo -e "done\n"
|
|
exit 0
|
|
fi
|
|
|
|
FOUND_GTK3_DEV=${FOUND_GTK3}
|