homebrew-core/Formula/enchant.rb
Alexis Hildebrandt 5d33729926 Update Formula: enchant
Version bump to 1.6.0

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-07-27 15:28:21 -07:00

15 lines
423 B
Ruby

require 'formula'
class Enchant <Formula
url 'http://www.abisource.com/downloads/enchant/1.6.0/enchant-1.6.0.tar.gz'
homepage 'http://www.abisource.com/projects/enchant/'
md5 'de11011aff801dc61042828041fb59c7'
depends_on 'glib'
depends_on 'aspell' => :optional
def install
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
system "make install"
end
end