vit 1.2
A minimalistic Taskwarrior full-screen terminal interface with Vim key bindings Closes Homebrew/homebrew#28952. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
parent
79853bab12
commit
3c03c63da1
1 changed files with 35 additions and 0 deletions
35
Formula/vit.rb
Normal file
35
Formula/vit.rb
Normal file
|
@ -0,0 +1,35 @@
|
|||
require "formula"
|
||||
|
||||
class Vit < Formula
|
||||
homepage "http://taskwarrior.org/news/news.20140406.html"
|
||||
url "http://taskwarrior.org/download/vit-1.2.tar.gz"
|
||||
sha1 "46ed3f9ff81112a2e28675720616568098a69cfa"
|
||||
head "https://git.tasktools.org/scm/ex/vit.git"
|
||||
|
||||
depends_on "task"
|
||||
|
||||
resource "Curses" do
|
||||
url "http://search.cpan.org/CPAN/authors/id/G/GI/GIRAFFED/Curses-1.31.tgz"
|
||||
sha1 "9a70e8cd3d16c48fa8292608b8a5ca9e69976ded"
|
||||
end
|
||||
|
||||
def install
|
||||
ENV.prepend_create_path "PERL5LIB", libexec+"lib/perl5"
|
||||
|
||||
resource("Curses").stage do
|
||||
system "perl", "Makefile.PL", "INSTALL_BASE=#{libexec}"
|
||||
system "make"
|
||||
system "make", "install"
|
||||
end
|
||||
|
||||
system "./configure", "--prefix=#{prefix}"
|
||||
system "make build"
|
||||
|
||||
bin.install "vit"
|
||||
man1.install "vit.1"
|
||||
man5.install "vitrc.5"
|
||||
etc.install "commands" => "vit-commands"
|
||||
bin.env_script_all_files(libexec+"bin", :PERL5LIB => ENV["PERL5LIB"])
|
||||
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue