Skip to content

Commit

Permalink
support Clear Linux OS (#5652)
Browse files Browse the repository at this point in the history
* support Clear Linux OS

Add some initial support for Clear Linux OS
(https://www.clearlinux.org/).
  • Loading branch information
schiele authored Jun 29, 2024
1 parent aa22b7f commit b18c0c7
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions linux.d/clear-linux-os
Original file line number Diff line number Diff line change
@@ -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)

0 comments on commit b18c0c7

Please sign in to comment.