remove base-devel from PKGBUILD because makepkg will not detect that it
is installed as a dependency for some reason.It is only needed for aur stuff so I just added it to aur-install.shmaster
parent
318ab004b8
commit
0d69918252
|
@ -1,7 +1,7 @@
|
||||||
pkgname="ajh-setup"
|
pkgname="ajh-setup"
|
||||||
pkgver="1.0.0"
|
pkgver="1.0.0"
|
||||||
pkgver="1"
|
pkgver="1"
|
||||||
pkgrel="1"
|
pkgrel="2"
|
||||||
pkgdesc="Install my config for Arch based systems."
|
pkgdesc="Install my config for Arch based systems."
|
||||||
arch=("x86_64")
|
arch=("x86_64")
|
||||||
|
|
||||||
|
@ -53,8 +53,6 @@ depends=(
|
||||||
"clang"
|
"clang"
|
||||||
"python-pip"
|
"python-pip"
|
||||||
"shellcheck"
|
"shellcheck"
|
||||||
"fakeroot"
|
|
||||||
"base-devel"
|
|
||||||
|
|
||||||
#multimedia
|
#multimedia
|
||||||
"pavucontrol"
|
"pavucontrol"
|
||||||
|
|
|
@ -26,6 +26,7 @@ wayland-idle-inhibitor-git
|
||||||
tofi
|
tofi
|
||||||
librewolf-bin"
|
librewolf-bin"
|
||||||
|
|
||||||
|
sudo pacman -S base-devel fakeroot
|
||||||
|
|
||||||
mkdir -p "$YAY_INSTALL_DIR"
|
mkdir -p "$YAY_INSTALL_DIR"
|
||||||
git clone https://aur.archlinux.org/yay.git "$YAY_INSTALL_DIR"
|
git clone https://aur.archlinux.org/yay.git "$YAY_INSTALL_DIR"
|
||||||
|
|
|
@ -75,7 +75,6 @@ configuration() {
|
||||||
chsh -s /bin/zsh "$USER"
|
chsh -s /bin/zsh "$USER"
|
||||||
|
|
||||||
#setup .zprofile and zsh history file
|
#setup .zprofile and zsh history file
|
||||||
cd ~ || return
|
|
||||||
ln -s ~/.profile ~/.zprofile
|
ln -s ~/.profile ~/.zprofile
|
||||||
mkdir -p ~/.cache/zsh
|
mkdir -p ~/.cache/zsh
|
||||||
touch ~/.cache/zsh/history
|
touch ~/.cache/zsh/history
|
||||||
|
@ -108,6 +107,8 @@ configuration() {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
sudo pacman -Syu
|
||||||
|
|
||||||
makepkg -si
|
makepkg -si
|
||||||
|
|
||||||
#do any installation steps here
|
#do any installation steps here
|
||||||
|
@ -124,6 +125,7 @@ read input
|
||||||
[ "$input" = "y" ] && wireless
|
[ "$input" = "y" ] && wireless
|
||||||
|
|
||||||
echo "installing AUR packages..."
|
echo "installing AUR packages..."
|
||||||
|
echo "$PWD"
|
||||||
sh ./SCRIPTS/aur-install.sh
|
sh ./SCRIPTS/aur-install.sh
|
||||||
echo "Done installing AUR packages."
|
echo "Done installing AUR packages."
|
||||||
echo ""
|
echo ""
|
||||||
|
|
Loading…
Reference in New Issue