class Abduco < Formula desc "Provides session management: i.e. separate programs from terminals" homepage "http://www.brain-dump.org/projects/abduco" url "http://www.brain-dump.org/projects/abduco/abduco-0.4.tar.gz" sha256 "bda3729df116ce41f9a087188d71d934da2693ffb1ebcf33b803055eb478bcbb" head "git://repo.or.cz/abduco.git" bottle do cellar :any sha256 "d7dde9fc66e7681927e1d871ab13bc78f2fc1561509ce8037c5b96ef020cb086" => :yosemite sha256 "1d04d33ff81e970c2f709d33cd3ec24dc91aa2a892635d0e1d85f46bec1e7cba" => :mavericks sha256 "ba4005c688b6e9a1d67c0de127ee67e6ffe011c98436f2f2c1480fe551caa94d" => :mountain_lion end def install ENV.append_to_cflags "-D_DARWIN_C_SOURCE" system "make", "PREFIX=#{prefix}", "install" end test do result = shell_output("#{bin}/abduco -v") result.force_encoding("UTF-8") if result.respond_to?(:force_encoding) assert_match /^abduco-#{version}/, result end end