mirror of
https://github.com/archlinux/aur.git
synced 2025-12-10 08:05:42 +01:00
Initial upload: nota.zsh 1.0.0-1
feat: add nota.zsh
This commit is contained in:
commit
e1807d02c5
2 changed files with 32 additions and 0 deletions
13
.SRCINFO
Normal file
13
.SRCINFO
Normal 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
19
PKGBUILD
Normal 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"
|
||||||
|
}
|
||||||
Loading…
Add table
Reference in a new issue