Initial commit

This commit is contained in:
Eduard Urbach 2024-03-30 12:17:15 +01:00
commit 830035d682
Signed by: akyoto
GPG Key ID: C874F672B1AF20C0
3 changed files with 77 additions and 0 deletions

52
base/PKGBUILD Normal file
View File

@ -0,0 +1,52 @@
# Maintainer: Eduard Urbach <admin@akyoto.dev>
pkgname=akyoto-base
pkgver=1
pkgrel=1
pkgdesc="Base system configuration"
arch=('any')
url="https://git.akyoto.dev/sys/arch"
license=('MIT')
provides=(
'vim'
'vi'
)
conflicts=(
'vim'
'vi'
)
depends=(
'base'
'btop'
'cpupower'
'dash'
'dua-cli'
'exa'
'fastfetch'
'fd'
'fish'
'git'
'git-lfs'
'inetutils'
'less'
'lsof'
'neovim'
'openssh'
'ripgrep'
'rsync'
'sudo'
'tldr'
'tmux'
'tree'
'ufw'
'which'
)
source=(
'dashbinsh.hook'
)
md5sums=(
'6ad284383b569553fb476703894d84b9'
)
package() {
install -Dm 0644 dashbinsh.hook "$pkgdir/etc/pacman.d/hooks/dashbinsh.hook"
}

11
base/dashbinsh.hook Normal file
View File

@ -0,0 +1,11 @@
[Trigger]
Type = Package
Operation = Install
Operation = Upgrade
Target = bash
[Action]
Description = Re-pointing /bin/sh symlink to dash...
When = PostTransaction
Exec = /usr/bin/ln -sfT dash /usr/bin/sh
Depends = dash

14
devel/PKGBUILD Normal file
View File

@ -0,0 +1,14 @@
# Maintainer: Eduard Urbach <admin@akyoto.dev>
pkgname=akyoto-devel
pkgver=1
pkgrel=1
pkgdesc="Development packages"
arch=('any')
url="https://git.akyoto.dev/sys/arch"
license=('MIT')
depends=(
'clang'
'go'
'gopls'
)