Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
Fix PAC Manager startup under Deepin 15.5
# Go in a tmp folder
cd $(mktemp -d)
# Update and install dependencies
sudo apt-get update
sudo apt-get install libglib2.0-dev libpango1.0-dev libvte-dev libvte-2.91-dev dh-make-perl libgtk2.0-dev
# Extract and build gnome2 dependencies
sudo cpan -i ExtUtils::Depends
sudo cpan -i ExtUtils::PkgConfig
sudo dh-make-perl --cpan Gnome2::Vte --build
# Install gnome2 vte dependencies
sudo dpkg -i libgnome2-vte*.deb
# RM vte lib in opt folder if finded !
sudo find /opt/pac/ -name "Vte.so*" -exec rm {} +
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment