mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-29 03:34:46 +01:00
22 lines
269 B
Bash
22 lines
269 B
Bash
#!/bin/sh
|
|
#
|
|
# An AUR helper is a way to automate the process below.
|
|
#
|
|
# `yay` is an AUR helper.
|
|
#
|
|
# https://wiki.archlinux.org/index.php/AUR_Helpers
|
|
|
|
set -xe
|
|
|
|
git clone https://aur.archlinux.org/yay-bin.git
|
|
|
|
cd yay-bin
|
|
|
|
vim PKGBUILD
|
|
|
|
makepkg -si
|
|
|
|
cd ..
|
|
|
|
rm -rf yay-bin
|