support Clear Linux OS (#5652)

* support Clear Linux OS

Add some initial support for Clear Linux OS
(https://www.clearlinux.org/).
This commit is contained in:
Robert Schiele 2024-06-29 06:21:29 +02:00 committed by GitHub
parent aa22b7f220
commit b18c0c76ae
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

33
linux.d/clear-linux-os Normal file
View file

@ -0,0 +1,33 @@
# these are the Clear Linux specific build functions
FOUND_GTK3=$(ls /usr/lib64/libgtk-3.so.* 2>/dev/null | tail -n 1 || true)
# Addtional 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
FOUND_GTK3_DEV=$(ls /usr/lib64/libgtk-3.so 2>/dev/null || true)