52 lines
640 B
Bash
Raw Normal View History

2024-03-30 11:17:15 +00:00
# Maintainer: Eduard Urbach <admin@akyoto.dev>
pkgname=akyoto-base
pkgver=1
2024-03-31 09:37:19 +00:00
pkgrel=4
2024-03-30 11:17:15 +00:00
pkgdesc="Base system configuration"
arch=('any')
url="https://git.akyoto.dev/sys/arch"
license=('MIT')
provides=(
'vim'
'vi'
)
conflicts=(
'vim'
'vi'
)
depends=(
'base'
'btop'
2024-03-30 17:02:32 +00:00
'cpupower'
'curl'
2024-03-30 11:17:15 +00:00
'dash'
'dua-cli'
'exa'
'fastfetch'
'fd'
'fish'
'git'
'less'
'lsof'
'neovim'
'openssh'
2024-03-31 09:37:19 +00:00
'pacman-contrib'
2024-03-30 11:17:15 +00:00
'ripgrep'
'rsync'
'sudo'
'tldr'
'tmux'
'tree'
'ufw'
'which'
)
source=(
'dashbinsh.hook'
)
md5sums=(
2024-03-30 11:32:18 +00:00
'4426b46657e574d2e9a26827ad4227fd'
2024-03-30 11:17:15 +00:00
)
package() {
install -Dm 0644 dashbinsh.hook "$pkgdir/etc/pacman.d/hooks/dashbinsh.hook"
2024-03-30 11:32:18 +00:00
}