Skip to content

Instantly share code, notes, and snippets.

@k0nsl
Forked from tadly/pacaur_install.sh
Created October 12, 2016 17:19
Show Gist options
  • Select an option

  • Save k0nsl/ec9a6dcd9a2c231d283cb58f8aa1508c to your computer and use it in GitHub Desktop.

Select an option

Save k0nsl/ec9a6dcd9a2c231d283cb58f8aa1508c to your computer and use it in GitHub Desktop.

Revisions

  1. Tadly revised this gist Aug 26, 2016. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion pacaur_install.sh
    Original file line number Diff line number Diff line change
    @@ -12,7 +12,7 @@
    # Run the following from a terminal to install pacaur:
    # $ curl -s https://gist.github.com/Tadly/0e65d30f279a34c33e9b/raw/pacaur_install.sh | bash

    # Make sur our shiny new arch is up-to-date
    # Make sure our shiny new arch is up-to-date
    echo "Checking for system updates..."
    sudo pacman -Syu

  2. Tadly revised this gist Aug 26, 2016. 1 changed file with 10 additions and 6 deletions.
    16 changes: 10 additions & 6 deletions pacaur_install.sh
    Original file line number Diff line number Diff line change
    @@ -12,27 +12,31 @@
    # Run the following from a terminal to install pacaur:
    # $ curl -s https://gist.github.com/Tadly/0e65d30f279a34c33e9b/raw/pacaur_install.sh | bash

    # MAKE SURE OUR SHINY NEW ARCH IS UP-TO-DATE
    # Make sur our shiny new arch is up-to-date
    echo "Checking for system updates..."
    sudo pacman -Syu

    # CREATE A TMP-WORKING-DIR AN NAVIGATE TO IT
    # Create a tmp-working-dir an navigate into it
    mkdir -p /tmp/pacaur_install
    cd /tmp/pacaur_install

    # INSTALL DEPENDENCY "expac", "yajl" AND "git" FROM EXTRA
    # If you didn't install the "base-devil" group,
    # we'll need those.
    sudo pacman -S binutils make gcc fakeroot --noconfirm

    # Install pacaur dependencies from arch repos
    sudo pacman -S expac yajl git --noconfirm

    # INSTALL DEPENDENCY "cower" FROM AUR
    # Install "cower" from AUR
    curl -o PKGBUILD https://aur.archlinux.org/cgit/aur.git/plain/PKGBUILD?h=cower
    makepkg PKGBUILD --skippgpcheck
    sudo pacman -U cower*.tar.xz --noconfirm

    # INSTALL "pacaur" FROM AUR
    # Install "pacaur" from AUR
    curl -o PKGBUILD https://aur.archlinux.org/cgit/aur.git/plain/PKGBUILD?h=pacaur
    makepkg PKGBUILD
    sudo pacman -U pacaur*.tar.xz --noconfirm

    # CLEAN THE TMP-WORKING-DIR
    # Clean up...
    cd ~
    rm -r /tmp/pacaur_install
  3. Tadly revised this gist Jul 19, 2016. 1 changed file with 4 additions and 0 deletions.
    4 changes: 4 additions & 0 deletions pacaur_install.sh
    Original file line number Diff line number Diff line change
    @@ -12,6 +12,10 @@
    # Run the following from a terminal to install pacaur:
    # $ curl -s https://gist.github.com/Tadly/0e65d30f279a34c33e9b/raw/pacaur_install.sh | bash

    # MAKE SURE OUR SHINY NEW ARCH IS UP-TO-DATE
    echo "Checking for system updates..."
    sudo pacman -Syu

    # CREATE A TMP-WORKING-DIR AN NAVIGATE TO IT
    mkdir -p /tmp/pacaur_install
    cd /tmp/pacaur_install
  4. Tadly revised this gist Apr 4, 2016. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion pacaur_install.sh
    Original file line number Diff line number Diff line change
    @@ -9,7 +9,7 @@
    #
    # Enjoy your time on an awesome system. Arch FTW!

    # Run the following for a terminal to install pacaur:
    # Run the following from a terminal to install pacaur:
    # $ curl -s https://gist.github.com/Tadly/0e65d30f279a34c33e9b/raw/pacaur_install.sh | bash

    # CREATE A TMP-WORKING-DIR AN NAVIGATE TO IT
  5. Tadly revised this gist Apr 4, 2016. 1 changed file with 12 additions and 0 deletions.
    12 changes: 12 additions & 0 deletions pacaur_install.sh
    Original file line number Diff line number Diff line change
    @@ -1,5 +1,17 @@
    #!/bin/sh

    # If you are new to arch, I encourage you to at least read and understand what
    # this script does befor blindley running it.
    # That's why I didn't make a one-liner out of it so you have an easier time
    # reading and understanding it :)
    #
    # This scripts purpose is purly to save you a few seconds on your new installation.
    #
    # Enjoy your time on an awesome system. Arch FTW!

    # Run the following for a terminal to install pacaur:
    # $ curl -s https://gist.github.com/Tadly/0e65d30f279a34c33e9b/raw/pacaur_install.sh | bash

    # CREATE A TMP-WORKING-DIR AN NAVIGATE TO IT
    mkdir -p /tmp/pacaur_install
    cd /tmp/pacaur_install
  6. Tadly Squiggle revised this gist Nov 13, 2015. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion pacaur_install.sh
    Original file line number Diff line number Diff line change
    @@ -4,7 +4,7 @@
    mkdir -p /tmp/pacaur_install
    cd /tmp/pacaur_install

    # INSTALL DEPENDENCY "expac" AND "yajl" FROM EXTRA
    # INSTALL DEPENDENCY "expac", "yajl" AND "git" FROM EXTRA
    sudo pacman -S expac yajl git --noconfirm

    # INSTALL DEPENDENCY "cower" FROM AUR
  7. Tadly Squiggle revised this gist Nov 11, 2015. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion pacaur_install.sh
    Original file line number Diff line number Diff line change
    @@ -5,7 +5,7 @@ mkdir -p /tmp/pacaur_install
    cd /tmp/pacaur_install

    # INSTALL DEPENDENCY "expac" AND "yajl" FROM EXTRA
    sudo pacman -S expac yajl --noconfirm
    sudo pacman -S expac yajl git --noconfirm

    # INSTALL DEPENDENCY "cower" FROM AUR
    curl -o PKGBUILD https://aur.archlinux.org/cgit/aur.git/plain/PKGBUILD?h=cower
  8. Tadly Squiggle revised this gist Nov 4, 2015. 1 changed file with 2 additions and 2 deletions.
    4 changes: 2 additions & 2 deletions pacaur_install.sh
    Original file line number Diff line number Diff line change
    @@ -8,12 +8,12 @@ cd /tmp/pacaur_install
    sudo pacman -S expac yajl --noconfirm

    # INSTALL DEPENDENCY "cower" FROM AUR
    curl -o PKGBUILD https://aur.archlinux.org/packages/co/cower/PKGBUILD
    curl -o PKGBUILD https://aur.archlinux.org/cgit/aur.git/plain/PKGBUILD?h=cower
    makepkg PKGBUILD --skippgpcheck
    sudo pacman -U cower*.tar.xz --noconfirm

    # INSTALL "pacaur" FROM AUR
    curl -o PKGBUILD https://aur.archlinux.org/packages/pa/pacaur/PKGBUILD
    curl -o PKGBUILD https://aur.archlinux.org/cgit/aur.git/plain/PKGBUILD?h=pacaur
    makepkg PKGBUILD
    sudo pacman -U pacaur*.tar.xz --noconfirm

  9. Jan Schimanski revised this gist Jun 21, 2015. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion pacaur_install.sh
    Original file line number Diff line number Diff line change
    @@ -9,7 +9,7 @@ sudo pacman -S expac yajl --noconfirm

    # INSTALL DEPENDENCY "cower" FROM AUR
    curl -o PKGBUILD https://aur.archlinux.org/packages/co/cower/PKGBUILD
    makepkg PKGBUILD
    makepkg PKGBUILD --skippgpcheck
    sudo pacman -U cower*.tar.xz --noconfirm

    # INSTALL "pacaur" FROM AUR
  10. Jan Schimanski revised this gist Oct 10, 2014. 1 changed file with 2 additions and 2 deletions.
    4 changes: 2 additions & 2 deletions pacaur_install.sh
    Original file line number Diff line number Diff line change
    @@ -1,10 +1,10 @@
    #!/bin/bash
    #!/bin/sh

    # CREATE A TMP-WORKING-DIR AN NAVIGATE TO IT
    mkdir -p /tmp/pacaur_install
    cd /tmp/pacaur_install

    #INSTALL DEPENDENCY "expac" AND "yajl" FROM EXTRA
    # INSTALL DEPENDENCY "expac" AND "yajl" FROM EXTRA
    sudo pacman -S expac yajl --noconfirm

    # INSTALL DEPENDENCY "cower" FROM AUR
  11. Jan Schimanski created this gist Oct 10, 2014.
    22 changes: 22 additions & 0 deletions pacaur_install.sh
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,22 @@
    #!/bin/bash

    # CREATE A TMP-WORKING-DIR AN NAVIGATE TO IT
    mkdir -p /tmp/pacaur_install
    cd /tmp/pacaur_install

    #INSTALL DEPENDENCY "expac" AND "yajl" FROM EXTRA
    sudo pacman -S expac yajl --noconfirm

    # INSTALL DEPENDENCY "cower" FROM AUR
    curl -o PKGBUILD https://aur.archlinux.org/packages/co/cower/PKGBUILD
    makepkg PKGBUILD
    sudo pacman -U cower*.tar.xz --noconfirm

    # INSTALL "pacaur" FROM AUR
    curl -o PKGBUILD https://aur.archlinux.org/packages/pa/pacaur/PKGBUILD
    makepkg PKGBUILD
    sudo pacman -U pacaur*.tar.xz --noconfirm

    # CLEAN THE TMP-WORKING-DIR
    cd ~
    rm -r /tmp/pacaur_install