mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-12-03 21:53:26 +01:00
22 lines
269 B
Plaintext
22 lines
269 B
Plaintext
|
#!/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
|