95884bae22
Closes Homebrew/homebrew#42407. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
36 lines
1.1 KiB
Ruby
36 lines
1.1 KiB
Ruby
class Vit < Formula
|
|
desc "Front-end for Task Warrior"
|
|
homepage "http://taskwarrior.org/news/news.20140406.html"
|
|
head "https://git.tasktools.org/scm/ex/vit.git"
|
|
url "http://taskwarrior.org/download/vit-1.2.tar.gz"
|
|
sha256 "a78dee573130c8d6bc92cf60fafac0abc78dd2109acfba587cb0ae202ea5bbd0"
|
|
revision 1
|
|
|
|
depends_on "task"
|
|
|
|
resource "Curses" do
|
|
url "http://cpan.metacpan.org/authors/id/G/GI/GIRAFFED/Curses-1.31.tgz"
|
|
sha256 "7bb4623ac97125c85e25f9fbf980103da7ca51c029f704f0aa129b7a2e50a27a"
|
|
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"
|
|
# vit-commands needs to be installed in the keg because that's where vit
|
|
# will look for it.
|
|
(prefix+"etc").install "commands" => "vit-commands"
|
|
bin.env_script_all_files(libexec+"bin", :PERL5LIB => ENV["PERL5LIB"])
|
|
end
|
|
end
|