You are not logged in.
Could any of you awesome people create a git package for this?
https://github.com/tarruda/zsh-autosuggestions
What confuses me is how to move files to $HOME, and then execute the install script, or if that's even necesarry.
I tried looking at the sample PGBUILDS, but got confused quickly. I got as far as:
_name='zsh-autosuggestions'
pkgname="${_name}-git"
pkgver=0.1.60.533325c
pkgrel=1
pkgdesc="Fish-like autosuggestions for zsh"
url="https://github.com/tarruda/zsh-autosuggestions"
arch=('any')
license=('MIT')
depends=('zsh')
makedepends=('git')
install="${_name}.install"
source=("${_name}::${url//https/git}")
sha256sums=('SKIP')
pkgver() {
cd "${srcdir}/${_name}"
echo "0.1.$(git rev-list --count HEAD).$(git describe --always )"
}
build() {
cd "${srcdir}/${_name}"
sh install
}The .install is just a simple
post_install() {
echo "==> See https://github.com/tarruda/zsh-autosuggestions for documentation"
}All help appreciated!
Offline
PKGBUILDS should never touch $HOME. Look at some of the other Zsh PKGBUILDs in the AUR and see how they manage it.
Offline
Offline
Hm, I haven't heard of antigen before, but I'm giving it a whack now. I've been using oh-my-zsh for a couple of years, but this seems simpler. Thanks for suggesting it!
Offline