98 lines
2.1 KiB
Bash
98 lines
2.1 KiB
Bash
pkgname=tl-archconfig
|
|
pkgver=0.1
|
|
pkgrel=1
|
|
pkgdesc="Thurstylark's auto configuration and package depends"
|
|
arch=(any)
|
|
url="http://git.thurstylark.org/tl-config"
|
|
license=('none')
|
|
<<<<<<< HEAD
|
|
groups=()
|
|
depends=(
|
|
# System setup
|
|
'intel-ucode'
|
|
# Non-graphical utils
|
|
'tmux' 'htop' 'vim'
|
|
'openssh' 'mosh' 'sshuttle'
|
|
'pacaur' 'git' 'pkgfile'
|
|
'pv' 'unzip' 'rsync'
|
|
'arch-install-scripts' 'bash-completion' 'reflector'
|
|
'alsa-utils'
|
|
# Non-graphical environment
|
|
'vifm' 'vcsh'
|
|
=======
|
|
depends=('pacaur'
|
|
'git'
|
|
'openssh'
|
|
'mosh'
|
|
'chromium'
|
|
'chromium-widevine'
|
|
'i3'
|
|
'3lock'
|
|
'dmenu'
|
|
'germinal'
|
|
'tmux'
|
|
'vifm'
|
|
'vcsh'
|
|
'htop'
|
|
'nmap'
|
|
'pkgfile'
|
|
>>>>>>> b4d547670e10ac1585f21a914cc5e6f9887f0aa1
|
|
'pass'
|
|
'vim-systemd'
|
|
<<<<<<< HEAD
|
|
# Non-graphical Apps
|
|
'nmap' 'openvpn'
|
|
'pbpst' 'fb-client' 'shellcheck'
|
|
'android-tools' 'android-udev'
|
|
# Graphical/X environment
|
|
'xorg' 'xorg-server-utils' 'xorg-xinit'
|
|
'numlockx' 'xautolock' 'srandrd'
|
|
'i3' 'i3lock' 'i3status' 'dmenu' 'light'
|
|
'arc-gtk-theme' 'pulseaudio' 'pulseaudio-alsa'
|
|
# Fonts
|
|
'ttf-dejavu' 'ttf-indic-otf' 'ttf-liberation' 'ttf-symbola'
|
|
'noto-fonts' 'noto-fonts-emoji' 'noto-fonts-cjk'
|
|
# Graphical Utilities
|
|
'st' 'xclip' 'xdotool' 'xorg-apps'
|
|
'pavucontrol'
|
|
# Graphical Apps
|
|
'chromium' 'chromium-widevine'
|
|
'mpv' 'youtube-dl'
|
|
'deluge'
|
|
)
|
|
makedepends=()
|
|
checkdepends=()
|
|
optdepends=()
|
|
provides=('tl-archconfig')
|
|
conflicts=()
|
|
replaces=()
|
|
backup=()
|
|
options=()
|
|
install=
|
|
changelog=
|
|
source=("10-dpms.conf"
|
|
"50-synaptics.conf"
|
|
"mirrorupgrade.hook"
|
|
)
|
|
=======
|
|
'vte3-ng'
|
|
'xautolock'
|
|
'xclip'
|
|
'xdotool')
|
|
install=
|
|
source=("20-inteltearfree.conf"
|
|
"50-synaptics.conf"
|
|
"pacman.conf")
|
|
>>>>>>> b4d547670e10ac1585f21a914cc5e6f9887f0aa1
|
|
noextract=()
|
|
md5sums=('760c4d3a7fa06a68a981e9785f235218'
|
|
'5584c5db17558cc6ccafc48e4e2d6f6b'
|
|
'1dfed5a9bb5ffc5fe43b361f7ece50b4')
|
|
|
|
package() {
|
|
make DESTDIR="$pkgdir/" install
|
|
install -D -o root -m 644 10-dpms.conf /etc/X11/xorg.conf.d/10-dpms.conf
|
|
install -D -o root -m 644 50-synaptics.conf /etc/X11/xorg.conf.d/50-synaptics.conf
|
|
install -D -o root -m 644 mirrorupgrade.hook /etc/pacman.d/hooks/mirrorupgrade.hook
|
|
}
|