diff --git a/zshrc/PKGBUILD b/zshrc/PKGBUILD new file mode 100644 index 0000000..04d3cc2 --- /dev/null +++ b/zshrc/PKGBUILD @@ -0,0 +1,16 @@ +# Maintainer: Debucquoy Anthony +pkgname=zsh-config-tonitch +pkgver=1 +pkgrel=1 +pkgdesc="Config for tonitch's zsh" +arch=(x86_64) +license=('unknown') +depends=('zsh' 'zsh-autosuggestions' 'zsh-history-substring-search' 'zsh-syntax-highlighting' 'zsh-vi-mode') +optdepends=('zsh-lovers') +source=("https://raw.githubusercontent.com/tonitch/dotfiles/master/.zshrc") +sha256sums=('705475f42e0744abe7b6c6bda42178776b58a76fc7fab4be0b60b42dfa08873e') + +package() { + cd "$srcdir" + install -Dm644 .zshrc ${pkgdir}/etc/zsh/zshrc +}