Created
July 4, 2014 20:46
-
-
Save asimzeeshan/cbc7a21854eab6b98e2e to your computer and use it in GitHub Desktop.
Install Google-Chrome in ArchLinux
This file contains hidden or 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
| # ============================================================ | |
| # Author: Asim Zeeshan | |
| # Web: http://asim.pk | |
| # ============================================================ | |
| # Lets Begin! | |
| # ============================================================ | |
| # Get the URL from https://aur.archlinux.org/packages/libgcrypt15/ | |
| # ============================================================ | |
| cd /usr/src | |
| sudo wget https://aur.archlinux.org/packages/li/libgcrypt15/libgcrypt15.tar.gz | |
| sudo tar zxf libgcrypt15.tar.gz | |
| cd libgcrypt15 | |
| sudo makepkg -s --asroot | |
| # >>>>> be very careful about next step because this may be different <<<<< | |
| sudo pacman -U libgcrypt* | |
| # ============================================================ | |
| # Get the URL from https://aur.archlinux.org/packages/google-chrome/ | |
| # ============================================================ | |
| cd /usr/src/ | |
| sudo wget https://aur.archlinux.org/packages/go/google-chrome/google-chrome.tar.gz | |
| sudo tar zxf google-chrome.tar.gz | |
| cd google-chrome | |
| sudo makepkg -s --asroot | |
| # >>>>> be very careful about next step because this may be different <<<<< | |
| sudo pacman -U google-chrome* |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment