Fix PAC Manager startup under Deepin 15.5
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
# 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