Initial upload: nota.zsh 1.0.0-1

feat: add nota.zsh
This commit is contained in:
Anas Elgarhy 2025-12-09 22:54:22 +02:00
commit e1807d02c5
2 changed files with 32 additions and 0 deletions

13
.SRCINFO Normal file
View file

@ -0,0 +1,13 @@
pkgbase = nota.zsh
pkgdesc = ZSH plugin that help you record notas with some context.
pkgver = 1.0.0
pkgrel = 1
url = https://github.com/0x61nas/nota.zsh
arch = any
license = MIT
depends = zsh
depends = fzf
source = https://github.com/0x61nas/nota.zsh/archive/refs/tags/1.0.0.tar.gz
sha256sums = 4098e73a0c5d3fb27b4fbd7003657a74002926d175636cc87e45135a940af0bc
pkgname = nota.zsh

19
PKGBUILD Normal file
View file

@ -0,0 +1,19 @@
# Maintainer: Anas Elgarhy <anas.elgarhy.dev@gmail.com>
pkgname=nota.zsh
pkgver=1.0.0
pkgrel=1
pkgdesc='ZSH plugin that help you record notas with some context.'
arch=('any')
url="https://github.com/0x61nas/nota.zsh"
license=('MIT')
depends=('zsh' 'fzf')
optdepends=()
options=()
source=("https://github.com/0x61nas/$pkgname/archive/refs/tags/$pkgname_$pkgver.tar.gz")
sha256sums=('4098e73a0c5d3fb27b4fbd7003657a74002926d175636cc87e45135a940af0bc')
# validpgpkeys=()
package() {
cd "$pkgname-$pkgver"
install -Dm755 nota.zsh "$pkgdir/usr/share/zsh/plugins/nota/nota.zsh"
}