mirror of
https://git.freebsd.org/ports.git
synced 2025-07-12 06:49:18 -04:00
Changes: https://github.com/tmuxinator/tmuxinator/releases https://github.com/tmuxinator/tmuxinator/blob/master/CHANGELOG.md
29 lines
811 B
Makefile
29 lines
811 B
Makefile
# Created by: Adam Weinberger <adamw@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= tmuxinator
|
|
PORTVERSION= 0.10.1
|
|
CATEGORIES= sysutils ruby
|
|
MASTER_SITES= RG
|
|
|
|
MAINTAINER= ruby@FreeBSD.org
|
|
COMMENT= Manage complex tmux sessions easily
|
|
|
|
LICENSE= MIT
|
|
|
|
RUN_DEPENDS= rubygem-erubis>=2.6:www/rubygem-erubis \
|
|
rubygem-thor>=0.15.0:devel/rubygem-thor \
|
|
rubygem-xdg>=2.2.3:devel/rubygem-xdg \
|
|
tmux:sysutils/tmux
|
|
|
|
USES= gem
|
|
USE_RUBY= yes
|
|
NO_ARCH= yes
|
|
|
|
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/zsh/site-functions
|
|
${INSTALL_DATA} ${WRKSRC}/completion/tmuxinator.zsh ${STAGEDIR}${PREFIX}/share/zsh/site-functions/_tmuxinator
|
|
|
|
.include <bsd.port.mk>
|