Fixed some stuff, still need to build
This commit is contained in:
parent
1db69c6bc5
commit
b9955d6145
2 changed files with 11 additions and 5 deletions
|
@ -1,7 +1,7 @@
|
|||
# Maintainer: Tibo De Peuter <tibo.depeuter@gmail.com>
|
||||
pkgbase=tdpeuter
|
||||
pkgname=(tdpeuter-base tdpeuter-dev tdpeuter-desktop)
|
||||
pkgver=0.0.18
|
||||
pkgver=0.0.19
|
||||
pkgrel=1
|
||||
pkgdesc="Sysconfig for my systems"
|
||||
arch=(any)
|
||||
|
@ -82,11 +82,10 @@ package_tdpeuter-desktop() {
|
|||
|
||||
# Tools
|
||||
depends+=(
|
||||
vifm zathura zathura-pdf-mupdf zellij zenith
|
||||
vifm zathura zathura-pdf-mupdf zellij
|
||||
)
|
||||
|
||||
post_install() {
|
||||
bash ./install.sh
|
||||
code --install-extension ms-vscode.cpptools
|
||||
}
|
||||
}
|
||||
|
|
|
@ -8,7 +8,7 @@ post_install() {
|
|||
pacman -S --needed git base-devel
|
||||
git clone https://aur.archlinux.org/yay.git
|
||||
cd yay
|
||||
su -c "makepkg -si" - tdpeuter
|
||||
su -c "makepkg -si --asdeps" - tdpeuter
|
||||
|
||||
post_upgrade
|
||||
}
|
||||
|
@ -32,7 +32,14 @@ install_apps() {
|
|||
# Jetbrains
|
||||
pkgs+=" intellij-idea-ultimate-edition pycharm-professional jetbrains-fleet"
|
||||
|
||||
su -c "yay --sudo \"SUDO_ASKPASS=/usr/lib/ssh/x11-ssh-askpass sudo\" --sudoflags \"-A\" --answerclean None --answerdiff None -S ${pkgs}" - tdpeuter
|
||||
# Prompt for sudo password
|
||||
options="--sudo \"SUDO_ASKPASS=/usr/lib/ssh/x11-ssh-askpass sudo\" "
|
||||
# Skip these
|
||||
options+="--sudoflags \"-A\" --answerclean None --answerdiff None "
|
||||
# Install as dependency
|
||||
options+="--makepkg \"makepkg --asdeps\" "
|
||||
|
||||
su -c "yay ${options} -S ${pkgs}" - tdpeuter
|
||||
}
|
||||
|
||||
install_fonts() {
|
||||
|
|
Loading…
Reference in a new issue