blob: 67f85afff0672ea13db6b5b61fd26ab6b7297b5d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
PORTNAME= tmuxinator
PORTVERSION= 3.3.5
CATEGORIES= sysutils ruby
MASTER_SITES= RG
MAINTAINER= ruby@FreeBSD.org
COMMENT= Manage complex tmux sessions easily
WWW= https://github.com/tmuxinator/tmuxinator
LICENSE= MIT
RUN_DEPENDS= rubygem-erubi>=1.13<2:www/rubygem-erubi \
rubygem-thor>=1.4.0<1.5:devel/rubygem-thor
USES= gem
NO_ARCH= yes
PLIST_FILES= bin/tmuxinator \
etc/bash_completion.d/_tmuxinator.bash \
share/fish/completions/tmuxinator.fish \
share/zsh/site-functions/_tmuxinator
OPTIONS_SINGLE= TMUX
OPTIONS_SINGLE_TMUX= TMUX TMUX23
OPTIONS_DEFAULT=TMUX
TMUX_DESC= Use tmux 3.x from sysutils/tmux
TMUX23_DESC= Use tmux 2.3 from sysutils/tmux23
TMUX_RUN_DEPENDS= tmux:sysutils/tmux
TMUX23_RUN_DEPENDS= tmux:sysutils/tmux23
post-install:
@${MKDIR} ${STAGEDIR}${PREFIX}/etc/bash_completion.d
${INSTALL_DATA} ${WRKSRC}/completion/tmuxinator.bash ${STAGEDIR}${PREFIX}/etc/bash_completion.d/_tmuxinator.bash
@${MKDIR} ${STAGEDIR}${PREFIX}/share/fish/completions
${INSTALL_DATA} ${WRKSRC}/completion/tmuxinator.fish ${STAGEDIR}${PREFIX}/share/fish/completions/tmuxinator.fish
@${MKDIR} ${STAGEDIR}${PREFIX}/share/zsh/site-functions
${INSTALL_DATA} ${WRKSRC}/completion/tmuxinator.zsh ${STAGEDIR}${PREFIX}/share/zsh/site-functions/_tmuxinator
.include <bsd.port.mk>
|