class Texapp < Formula desc "App.net client based on TTYtter" homepage "http://www.floodgap.com/software/texapp/" url "http://www.floodgap.com/software/texapp/dist0/0.6.10.txt" sha256 "e05fa2b3cdc90c79c8725141b3176a312d46251606431226f0754d96fb0b10fd" bottle do cellar :any sha256 "836d36b2815deefebd8052ec82790f53075c646bfa69d66ef5c9ac68a7a5fb7f" => :yosemite sha256 "d6d7c7f46df6ca2c19b25795e9c739a50737b3881ee34d4a10a87bf074ee6043" => :mavericks sha256 "055321fde66b9fb34f4fd97069ef5310228c41384b3ee3a0eef98b9d33c1707b" => :mountain_lion end depends_on "readline" => :optional resource "Term::ReadLine::TTYtter" do url "https://cpan.metacpan.org/authors/id/C/CK/CKAISER/Term-ReadLine-TTYtter-1.4.tar.gz" mirror "http://www.cpan.org/authors/id/C/CK/CKAISER/Term-ReadLine-TTYtter-1.4.tar.gz" sha256 "ac373133cee1b2122a8273fe7b4244613d0eecefe88b668bd98fe71d1ec4ac93" end def install bin.install "#{version}.txt" => "texapp" if build.with? "readline" ENV.prepend_create_path "PERL5LIB", libexec/"lib/perl5" resource("Term::ReadLine::TTYtter").stage do system "perl", "Makefile.PL", "INSTALL_BASE=#{libexec}" system "make" system "make", "install" end bin.env_script_all_files(libexec/"bin", :PERL5LIB => ENV["PERL5LIB"]) chmod 0755, libexec/"bin/texapp" end end test do assert_match "trying to find cURL ...", pipe_output("#{bin}/texapp", "^C") end end