homebrew-core/Formula/enchant.rb

20 lines
556 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Enchant < Formula
homepage 'http://www.abisource.com/projects/enchant/'
url 'http://www.abisource.com/downloads/enchant/1.6.0/enchant-1.6.0.tar.gz'
sha1 '321f9cf0abfa1937401676ce60976d8779c39536'
2013-02-10 06:28:09 +00:00
depends_on 'pkg-config' => :build
depends_on 'glib'
depends_on 'aspell'
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--disable-ispell",
"--disable-myspell"
system "make install"
end
end