freebsd-ports/textproc/fzf/Makefile
Ashish SHUKLA 961d155e13 - Update to 0.24.2
PR:		250776
Approved by:	Sascha Holzleiter <sascha at root-login dot org>(maintainer)
2020-11-08 07:09:08 +00:00

58 lines
2.0 KiB
Makefile

# Created by: Sascha Holzleiter <sascha@root-login.org>
# $FreeBSD$
PORTNAME= fzf
PORTVERSION= 0.24.2
CATEGORIES= textproc
MAINTAINER= sascha@root-login.org
COMMENT= Blazing fast command-line fuzzy finder
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/LICENSE
USES= compiler go:modules
USE_GITHUB= yes
GH_ACCOUNT= junegunn
GH_TUPLE= \
gdamore:encoding:v1.0.0:gdamore_encoding/vendor/github.com/gdamore/encoding \
gdamore:tcell:v1.4.0:gdamore_tcell/vendor/github.com/gdamore/tcell \
golang:crypto:9e8e0b390897:golang_crypto/vendor/golang.org/x/crypto \
golang:sync:67f06af15bc9:golang_sync/vendor/golang.org/x/sync \
golang:sys:119d4633e4d1:golang_sys/vendor/golang.org/x/sys \
golang:text:v0.3.3:golang_text/vendor/golang.org/x/text \
lucasb-eyer:go-colorful:v1.0.3:lucasb_eyer_go_colorful/vendor/github.com/lucasb-eyer/go-colorful \
mattn:go-isatty:v0.0.12:mattn_go_isatty/vendor/github.com/mattn/go-isatty \
mattn:go-runewidth:v0.0.9:mattn_go_runewidth/vendor/github.com/mattn/go-runewidth \
mattn:go-shellwords:v1.0.10:mattn_go_shellwords/vendor/github.com/mattn/go-shellwords \
saracen:walker:v0.1.1:saracen_walker/vendor/github.com/saracen/walker
GO_BUILDFLAGS= -ldflags="-X main.revision=e3e76fa -w"
SUB_FILES= pkg-message
PLIST_FILES= bin/fzf man/man1/fzf.1.gz
PORTEXAMPLES= shell/completion.bash shell/completion.zsh \
shell/key-bindings.bash shell/key-bindings.fish \
shell/key-bindings.zsh
OPTIONS_DEFINE= EXAMPLES TMUX
OPTIONS_DEFAULT= TMUX
TMUX_DESC= Install fzf-tmux (depends on BASH)
TMUX_RUN_DEPENDS= bash:shells/bash
TMUX_PLIST_FILES= bin/fzf-tmux man/man1/fzf-tmux.1.gz
post-install:
${INSTALL_MAN} ${WRKSRC}/man/man1/fzf.1 ${STAGEDIR}${MANPREFIX}/man/man1
${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
(cd ${WRKSRC} && \
${COPYTREE_SHARE} shell ${STAGEDIR}${EXAMPLESDIR})
post-install-TMUX-on:
${INSTALL_SCRIPT} ${WRKSRC}/bin/${PORTNAME}-tmux ${STAGEDIR}${PREFIX}/bin
${INSTALL_MAN} ${WRKSRC}/man/man1/fzf-tmux.1 ${STAGEDIR}${MANPREFIX}/man/man1
.include <bsd.port.mk>