forked from freebsd/freebsd-ports
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
VIT (Visual Interactive Taskwarrior) is a lightweight, curses-based front end for Taskwarrior that provides a convenient way to quickly navigate and process tasks. VIT allows you to interact with tasks in a Vi-intuitive way. A goal of VIT is to allow you to customize the way in which you use Taskwarrior's core commands as well as to provide a framework for easily dispatching external commands (both user scripts and Taskwarrior's many External Scripts). WWW: http://tasktools.org/projects/vit.html
- Loading branch information
Showing
4 changed files
with
50 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# Created by: gahr | ||
# $FreeBSD$ | ||
|
||
PORTNAME= vit | ||
PORTVERSION= 1.2 | ||
CATEGORIES= deskutils | ||
MASTER_SITES= http://taskwarrior.org/download/ | ||
|
||
MAINTAINER= [email protected] | ||
COMMENT= Curses-based interface to taskwarrior | ||
|
||
LICENSE= GPLv3 | ||
|
||
RUN_DEPENDS= p5-Curses>=0:${PORTSDIR}/devel/p5-Curses \ | ||
p5-Time-HiRes>=0:${PORTSDIR}/devel/p5-Time-HiRes \ | ||
task:${PORTSDIR}/deskutils/taskwarrior | ||
BUILD_DEPENDS:= ${RUN_DEPENDS} | ||
|
||
USES= perl5 shebangfix | ||
SHEBANG_FILES= vit.pl | ||
GNU_CONFIGURE= yes | ||
ALL_TARGET= build | ||
|
||
PLIST_FILES= bin/vit \ | ||
etc/vit-commands \ | ||
man/man1/vit.1.gz \ | ||
man/man5/vitrc.5.gz | ||
|
||
post-patch: | ||
${REINPLACE_CMD} -e '1774,1778d' \ | ||
${WRKSRC}/${CONFIGURE_SCRIPT} | ||
|
||
do-install: | ||
${INSTALL_SCRIPT} ${WRKSRC}/vit ${STAGEDIR}${PREFIX}/bin | ||
${INSTALL_DATA} ${WRKSRC}/commands ${STAGEDIR}${PREFIX}/etc/vit-commands | ||
${INSTALL_MAN} ${WRKSRC}/vit.1 ${STAGEDIR}${PREFIX}/man/man1 | ||
${INSTALL_MAN} ${WRKSRC}/vitrc.5 ${STAGEDIR}${PREFIX}/man/man5 | ||
|
||
.include <bsd.port.mk> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
SHA256 (vit-1.2.tar.gz) = a78dee573130c8d6bc92cf60fafac0abc78dd2109acfba587cb0ae202ea5bbd0 | ||
SIZE (vit-1.2.tar.gz) = 48729 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
VIT (Visual Interactive Taskwarrior) is a lightweight, curses-based front end | ||
for Taskwarrior that provides a convenient way to quickly navigate and process | ||
tasks. VIT allows you to interact with tasks in a Vi-intuitive way. A goal of | ||
VIT is to allow you to customize the way in which you use Taskwarrior's core | ||
commands as well as to provide a framework for easily dispatching external | ||
commands (both user scripts and Taskwarrior's many External Scripts). | ||
|
||
WWW: http://tasktools.org/projects/vit.html |