homebrew-core/Formula/confuse.rb

23 lines
638 B
Ruby
Raw Normal View History

2010-05-21 16:33:41 +00:00
require 'formula'
2011-03-10 05:11:03 +00:00
class Confuse < Formula
2010-05-21 16:33:41 +00:00
homepage 'http://www.nongnu.org/confuse/'
2013-01-27 02:19:47 +00:00
url 'http://savannah.nongnu.org/download/confuse/confuse-2.7.tar.gz'
sha1 'b3f74f9763e6c9012476dbd323d083af4be34cad'
2010-05-21 16:33:41 +00:00
2014-10-22 14:41:51 +00:00
bottle do
cellar :any
sha1 "1364f86a7dfa199fee07f273f6e3b4945b9db02a" => :yosemite
sha1 "d1edb26d0b30a9d85453cf811a5acf582dba3d56" => :mavericks
sha1 "9ede76f809eb464d96a8f703fb74c1678fc0c48d" => :mountain_lion
end
depends_on 'pkg-config' => :build
2010-05-21 16:33:41 +00:00
def install
2013-01-27 02:19:47 +00:00
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
2010-05-21 16:33:41 +00:00
system "make install"
end
end