mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2026-01-29 20:30:51 -07:00
* Fix various typos in source documentation * Delete cmake/modules/Catch2/CatchAddTests.cmake * Delete tests/example/example_tests_main.cpp * Revert test_config.cpp --------- Co-authored-by: Ian Bassi <ian.bassi@outlook.com>
46 lines
837 B
Bash
46 lines
837 B
Bash
#!/bin/bash
|
|
# these are the Arch Linux specific build functions
|
|
|
|
# Additional Dev packages for OrcaSlicer
|
|
export REQUIRED_DEV_PACKAGES=(
|
|
cmake
|
|
curl
|
|
dbus
|
|
eglexternalplatform
|
|
extra-cmake-modules
|
|
file
|
|
gettext
|
|
git
|
|
glew
|
|
gstreamer
|
|
gstreamermm
|
|
gtk3
|
|
libmspack
|
|
libsecret
|
|
libspnav
|
|
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 [[ "${#NEEDED_PKGS[*]}" -gt 0 ]]; then
|
|
sudo pacman -Syy --noconfirm "${NEEDED_PKGS[@]}"
|
|
fi
|
|
echo -e "done\n"
|
|
exit 0
|
|
fi
|
|
|
|
export FOUND_GTK3_DEV
|
|
FOUND_GTK3_DEV=$(pacman -Q gtk3)
|