commit 830035d68253b88a39c804c6b75a481e87d1b967 Author: Eduard Urbach Date: Sat Mar 30 12:17:15 2024 +0100 Initial commit diff --git a/base/PKGBUILD b/base/PKGBUILD new file mode 100644 index 0000000..2db031c --- /dev/null +++ b/base/PKGBUILD @@ -0,0 +1,52 @@ +# Maintainer: Eduard Urbach +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" +} diff --git a/base/dashbinsh.hook b/base/dashbinsh.hook new file mode 100644 index 0000000..ed08b69 --- /dev/null +++ b/base/dashbinsh.hook @@ -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 diff --git a/devel/PKGBUILD b/devel/PKGBUILD new file mode 100644 index 0000000..078cd97 --- /dev/null +++ b/devel/PKGBUILD @@ -0,0 +1,14 @@ +# Maintainer: Eduard Urbach +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' +) +