homebrew-core/Formula/cgrep.rb
2015-01-27 10:30:24 +00:00

41 lines
1.1 KiB
Ruby

require "language/haskell"
class Cgrep < Formula
include Language::Haskell::Cabal
homepage "https://github.com/awgn/cgrep"
url "https://github.com/awgn/cgrep/archive/v6.4.12.tar.gz"
sha1 "4933c1ae055d5c04f567c9405339ce4f972ef62b"
head "https://github.com/awgn/cgrep.git"
bottle do
cellar :any
sha1 "f3879496816cd421a874c0c13f11749c2816bccc" => :yosemite
sha1 "935e68c7447007ddcffe49f48c4ceb9bab69a362" => :mavericks
sha1 "a446389f7b1977bf49b7ede278e731934659a647" => :mountain_lion
end
depends_on "ghc" => :build
depends_on "cabal-install" => :build
depends_on "gmp"
def install
install_cabal_package
end
test do
test_string = "String in"
path = testpath/"test.rb"
path.write <<-EOS.undent
# puts #{test_string} comment.
puts "#{test_string} literal."
EOS
comment = `cgrep --comment "#{test_string}" #{path}`
assert_equal 1, comment.lines.count
literal = `cgrep --literal "#{test_string}" #{path}`
assert_equal 1, literal.lines.count
code = `cgrep --code puts #{path}`
assert_equal 1, code.lines.count
end
end