fzf: initial commit, version 0.21.1

This commit is contained in:
Tim Biermann 2020-06-14 21:16:29 +00:00
parent 3b58b3633d
commit 4f22e7701d
3 changed files with 34 additions and 0 deletions

10
fzf/.footprint Normal file
View File

@ -0,0 +1,10 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/fzf
-rwxr-xr-x root/root usr/bin/fzf-tmux
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/fzf/
-rw-r--r-- root/root usr/share/fzf/completion.bash
-rw-r--r-- root/root usr/share/fzf/completion.zsh
-rw-r--r-- root/root usr/share/fzf/key-bindings.bash
-rw-r--r-- root/root usr/share/fzf/key-bindings.zsh

5
fzf/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF3w5w4qgu0FUUfq1h4//8nlYumDKGPZg0G2EHGUsWA3pRre1C0WTYo6lSTqa64kQa28ZIA3n6rSYVNl/+fEpCuAo=
SHA256 (Pkgfile) = 259d9288982f4f840f2a75bb76efad55ba822a64bd4b3dc756c6352b924bb553
SHA256 (.footprint) = 5d7cb1a988f2706d89669ef1113301b38cbaabf008f44f1440bd21815df50311
SHA256 (fzf-0.21.1.tar.gz) = 47adf138f17c45d390af81958bdff6f92157d41e2c4cb13773df078b905cdaf4

19
fzf/Pkgfile Normal file
View File

@ -0,0 +1,19 @@
# 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
version=0.21.1
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
}