mirror of
https://github.com/Snigdha-OS/snigdhaos-pkgbuilds.git
synced 2025-09-23 04:55:04 +02:00

Some checks are pending
Check Conventional Commit / check-commit-message (push) Waiting to run
31 lines
596 B
Bash
31 lines
596 B
Bash
# Maintainer: Eshan Roy <m.eshanized@gmail.com>
|
|
|
|
pkgname=snigdhaos-zsh-config
|
|
pkgver=1
|
|
pkgrel=1
|
|
pkgdesc="Snigdha OS Zsh Config"
|
|
arch=(any)
|
|
host="https://github.com/Snigdha-OS"
|
|
url="${host}/snigdhaos-pkgbuild/${pkgname}"
|
|
license=('GPL')
|
|
conflicts=(
|
|
'snigdhaos-zsh-config-dev'
|
|
)
|
|
depends=(
|
|
'fzf'
|
|
'zsh'
|
|
'zsh-autosuggestions'
|
|
'zsh-completions'
|
|
'zsh-syntax-highlighting')
|
|
makedepends=('git')
|
|
source=('.zshrc')
|
|
sha256sums=('SKIP')
|
|
|
|
pkgver() {
|
|
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
|
|
}
|
|
|
|
package() {
|
|
install -D -m644 zshrc "$pkgdir/etc/skel/.zshrc"
|
|
}
|