track alacritty, wayland, misc fixes and binfiles
This commit is contained in:
parent
ca20e04409
commit
4c1563501a
9 changed files with 1834 additions and 4 deletions
15
private_bin/executable_quickaur
Normal file
15
private_bin/executable_quickaur
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
set -euo pipefail
|
||||
|
||||
pkg="$1"
|
||||
|
||||
dir="$(mktemp -d "aur.$pkg.XXXXXXXX")"
|
||||
|
||||
git clone --branch "$pkg" --single-branch https://github.com/archlinux/aur.git "$dir"
|
||||
|
||||
pushd "$dir" || exit 1
|
||||
|
||||
makepkg -sri
|
||||
|
||||
popd || exit 1
|
||||
Loading…
Add table
Add a link
Reference in a new issue