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.sh
master
Alex 2022-10-02 15:35:29 -05:00
parent 318ab004b8
commit 0d69918252
3 changed files with 5 additions and 4 deletions

View File

@ -1,7 +1,7 @@
pkgname="ajh-setup"
pkgver="1.0.0"
pkgver="1"
pkgrel="1"
pkgrel="2"
pkgdesc="Install my config for Arch based systems."
arch=("x86_64")
@ -53,8 +53,6 @@ depends=(
"clang"
"python-pip"
"shellcheck"
"fakeroot"
"base-devel"
#multimedia
"pavucontrol"

View File

@ -26,6 +26,7 @@ wayland-idle-inhibitor-git
tofi
librewolf-bin"
sudo pacman -S base-devel fakeroot
mkdir -p "$YAY_INSTALL_DIR"
git clone https://aur.archlinux.org/yay.git "$YAY_INSTALL_DIR"

View File

@ -75,7 +75,6 @@ configuration() {
chsh -s /bin/zsh "$USER"
#setup .zprofile and zsh history file
cd ~ || return
ln -s ~/.profile ~/.zprofile
mkdir -p ~/.cache/zsh
touch ~/.cache/zsh/history
@ -108,6 +107,8 @@ configuration() {
}
sudo pacman -Syu
makepkg -si
#do any installation steps here
@ -124,6 +125,7 @@ read input
[ "$input" = "y" ] && wireless
echo "installing AUR packages..."
echo "$PWD"
sh ./SCRIPTS/aur-install.sh
echo "Done installing AUR packages."
echo ""