File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed
Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -37,11 +37,18 @@ pacman -Syq --needed --noconfirm ${buildPkgs} ${ghosttyPkgs}
3737
3838# Add debloated version of llvm-libs
3939LLVM_URL=" $( wget https://api.github.com/repos/pkgforge-dev/llvm-libs-debloated/releases -O - \
40- | sed ' s/[()",{} ]/\n/g' | grep -i " https.*nano.*$ARCH .pkg.tar.*" | head -1) "
40+ | sed ' s/[()",{} ]/\n/g' | grep -i " https.*llvm-libs- nano.*$ARCH .pkg.tar.*" | head -1) "
4141wget " $LLVM_URL " -O ./llvm-libs.pkg.tar.zst
4242pacman -U --noconfirm ./llvm-libs.pkg.tar.zst
4343rm -f ./llvm-libs.pkg.tar.zst
4444
45+ # Add libxml2 version without libicudata dependency
46+ LIBXML_URL=" $( wget https://api.github.com/repos/pkgforge-dev/llvm-libs-debloated/releases -O - \
47+ | sed ' s/[()",{} ]/\n/g' | grep -i " https.*libxml2.*$ARCH .pkg.tar.*" | head -1) "
48+ wget " $LIBXML_URL " -O ./libxml2.pkg.tar.zst
49+ pacman -U --noconfirm ./libxml2.pkg.tar.zst
50+ rm -f ./libxml2.pkg.tar.zst
51+
4552# Download & install other dependencies
4653# appimagetool: https://github.com/AppImage/appimagetool
4754if [ ! -f ' /usr/local/bin/appimagetool' ]; then
You can’t perform that action at this time.
0 commit comments