contrib/fzf/Pkgfile

22 lines
511 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
2023-05-01 22:01:49 +02:00
version=0.40.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
2023-04-02 16:48:12 +02:00
2020-06-14 23:16:29 +02:00
go build -o fzf .
2023-04-02 16:48:12 +02:00
2020-06-14 23:16:29 +02:00
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
}