mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2026-01-29 12:20:50 -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>
34 lines
630 B
Bash
34 lines
630 B
Bash
#!/bin/bash
|
|
# these are the Clear Linux specific build functions
|
|
|
|
# Additional bundles for OrcaSlicer
|
|
export REQUIRED_BUNDLES=(
|
|
c-basic
|
|
dev-utils
|
|
devpkg-curl
|
|
devpkg-glew
|
|
devpkg-glu
|
|
devpkg-gstreamer
|
|
devpkg-gtk3
|
|
devpkg-libmspack
|
|
devpkg-libsecret
|
|
devpkg-openssl
|
|
devpkg-webkitgtk
|
|
file
|
|
git
|
|
lib-opengl
|
|
perl-basic
|
|
texinfo
|
|
wget
|
|
)
|
|
|
|
if [[ -n "$UPDATE_LIB" ]]
|
|
then
|
|
echo "Updating linux ..."
|
|
echo swupd bundle-add -y "${REQUIRED_BUNDLES[@]}"
|
|
echo -e "done\n"
|
|
exit 0
|
|
fi
|
|
|
|
export FOUND_GTK3_DEV
|
|
FOUND_GTK3_DEV=$(find /usr/lib64/libgtk-3.so 2>/dev/null || true)
|