46 lines
759 B
Bash
46 lines
759 B
Bash
# Maintainer: Tibo De Peuter <tibo.depeuter@gmail.com>
|
|
pkgbase=tdpeuter
|
|
pkgname=(tdpeuter-base tdpeuter-desktop tdpeuter-social)
|
|
pkgver=0.0.1
|
|
pkgrel=1
|
|
pkgdesc="Sysconfig for my systems"
|
|
arch=(any)
|
|
url="https://git.depeuter.tk/tdpeuter/arch-pkgs"
|
|
license=(GPL)
|
|
groups=(tdpeuter)
|
|
|
|
package_tdpeuter-base() {
|
|
|
|
# Linux base
|
|
depends=(
|
|
base
|
|
linux
|
|
linux-firmware
|
|
)
|
|
}
|
|
|
|
package_tdpeuter-desktop() {
|
|
|
|
depends=(
|
|
alacritty
|
|
brightnessctl
|
|
dunst
|
|
sway
|
|
waybar
|
|
xwayland
|
|
)
|
|
|
|
# Fonts
|
|
depends+=(
|
|
awesome-terminal-fonts
|
|
noto-fonts
|
|
noto-fonts-cjk
|
|
noto-fonts-emoji
|
|
)
|
|
}
|
|
|
|
package_tdpeuter-social() {
|
|
depends=(
|
|
betterbird
|
|
)
|
|
}
|