blob: d44f43ec03816510801892185b52273833207edb (
plain)
1 # Description: a general-purpose command-line fuzzy finder
2 # URL: https://github.com/junegunn/fzf/
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on: go
5
6 name=fzf
7 version=0.36.0
8 release=1
9 source=(https://github.com/junegunn/fzf/archive/$version/$name-$version.tar.gz)
10
11 build() {
12 cd $name-$version
13 go build -o fzf .
14 install -dm755 $PKG/usr/bin
15 install -m755 fzf bin/fzf-tmux $PKG/usr/bin/
16
17 install -dm755 $PKG/usr/share/fzf
18 install -m644 shell/*.bash shell/*.zsh $PKG/usr/share/fzf
19 }
|