33 lines
1.1 KiB
Bash
33 lines
1.1 KiB
Bash
# Template file for 'fzf'
|
|
pkgname=fzf
|
|
version=0.46.1
|
|
revision=1
|
|
build_style=go
|
|
go_import_path="github.com/junegunn/fzf"
|
|
go_ldflags="-X main.version=${version} -X main.revision="
|
|
makedepends="ncurses-devel"
|
|
short_desc="Command-line fuzzy finder"
|
|
maintainer="Leah Neukirchen <leah@vuxu.org>"
|
|
license="MIT"
|
|
homepage="https://github.com/junegunn/fzf"
|
|
changelog="https://raw.githubusercontent.com/junegunn/fzf/master/CHANGELOG.md"
|
|
distfiles="https://github.com/junegunn/fzf/archive/refs/tags/${version}.tar.gz"
|
|
checksum=b0d640be3ae79980fdf461096f7d9d36d38ec752e25f8c4d2ca3ca6c041c2491
|
|
|
|
post_install() {
|
|
cd ${wrksrc}
|
|
vbin bin/fzf-tmux
|
|
vman man/man1/fzf.1
|
|
vlicense LICENSE
|
|
|
|
sed -i -e 's#source ~/\.fzf\.bash; ##' shell/key-bindings.bash
|
|
vinstall plugin/fzf.vim 644 usr/share/vim/vimfiles/plugin
|
|
vinstall plugin/fzf.vim 644 usr/share/nvim/runtime/plugin
|
|
|
|
vinstall shell/completion.bash 644 usr/share/fzf
|
|
vinstall shell/completion.zsh 644 usr/share/fzf
|
|
vinstall shell/key-bindings.zsh 644 usr/share/fzf
|
|
vinstall shell/key-bindings.bash 644 usr/share/fzf
|
|
vinstall shell/key-bindings.fish 644 usr/share/fzf
|
|
}
|