summaryrefslogtreecommitdiff
path: root/fzf/Pkgfile
blob: cc7427aab549e0de3b4086379f24a843fa3ca09f (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.31.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 }

Generated by cgit