update zsh package

This commit is contained in:
komeil Parseh 2023-03-24 06:47:14 +03:30
parent 3a15fa66cf
commit d125a05d5d
No known key found for this signature in database
GPG key ID: 1928AF673B1C4255
4 changed files with 1936 additions and 0 deletions

1907
parch-config-zsh/.BUILDINFO Normal file

File diff suppressed because it is too large Load diff

BIN
parch-config-zsh/.MTREE Normal file

Binary file not shown.

12
parch-config-zsh/.PKGINFO Normal file
View file

@ -0,0 +1,12 @@
# Generated by makepkg 6.0.2
# using fakeroot version 1.31
pkgname = parch-config-zsh
pkgbase = parch-config-zsh
pkgver = 1.0.0-1
pkgdesc = zsh default configs
url = https://parchlinux.ir/
builddate = 1679312589
packager = Unknown Packager
size = 6753
arch = any
license = GPL

17
parch-config-zsh/PKGBUILD Normal file
View file

@ -0,0 +1,17 @@
#!/usr/bin/env bash
pkgname="parch-config-zsh"
pkgver="1.0.1"
pkgrel=1
pkgdesc="zsh default configs"
arch=("any")
url="https://parchlinux.ir/"
license=("GPL")
conflict=("${pkgname%}")
depends=("oh-my-zsh-git" "fzf")
package() {
install -d "${pkgdir}/etc/skel/"
install -m755 "${srcdir}/.zshrc" "${pkgdir}/etc/skel/"
}