contrib/fzf/Pkgfile

20 lines
509 B
Plaintext
Raw Normal View History

2020-06-14 23:16:29 +02:00
# Description: a general-purpose command-line fuzzy finder
# URL: https://github.com/junegunn/fzf/
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: go
name=fzf
2022-04-07 23:58:38 +02:00
version=0.30.0
2020-06-14 23:16:29 +02:00
release=1
source=(https://github.com/junegunn/fzf/archive/$version/$name-$version.tar.gz)
build() {
cd $name-$version
go build -o fzf .
install -dm755 $PKG/usr/bin
install -m755 fzf bin/fzf-tmux $PKG/usr/bin/
install -dm755 $PKG/usr/share/fzf
install -m644 shell/*.bash shell/*.zsh $PKG/usr/share/fzf
}