Last active
August 16, 2024 09:42
-
-
Save JanGalek/c114a4f2c10b00dca7618ea98b80e96f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env sh | |
all_args="$*" | |
mkdir temp | |
chmod +x $all_args | |
sudo SKIP_PACKAGE_CHECK=1 ./$all_args | |
cd temp | |
wget http://mirrors.kernel.org/ubuntu/pool/main/p/pango1.0/libpango-1.0-0_1.50.6+ds-2ubuntu1_amd64.deb | |
dpkg-deb -x libpango-1.0-0_1.50.6+ds-2ubuntu1_amd64.deb . | |
wget http://mirrors.kernel.org/ubuntu/pool/main/p/pango1.0/libpangoft2-1.0-0_1.50.6+ds-2ubuntu1_amd64.deb | |
dpkg-deb -x libpangoft2-1.0-0_1.50.6+ds-2ubuntu1_amd64.deb . | |
wget http://mirrors.kernel.org/ubuntu/pool/main/p/pango1.0/libpangocairo-1.0-0_1.50.6+ds-2ubuntu1_amd64.deb | |
dpkg-deb -x libpangocairo-1.0-0_1.50.6+ds-2ubuntu1_amd64.deb . | |
wget http://mirrors.kernel.org/ubuntu/pool/main/g/gdk-pixbuf/libgdk-pixbuf-2.0-0_2.42.8+dfsg-1ubuntu0.3_amd64.deb | |
dpkg-deb -x libgdk-pixbuf-2.0-0_2.42.8+dfsg-1ubuntu0.3_amd64.deb . | |
sudo cp usr/lib/x86_64-linux-gnu/lib* /opt/resolve/libs | |
# Clear | |
cd .. | |
rm -R temp | |
sudo cp /usr/lib/x86_64-linux-gnu/libglib-2.0.so.0 /opt/resolve/libs/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment