2009-12-28 00:11:47 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Enchant < Formula
|
2009-12-28 00:11:47 +00:00
|
|
|
homepage 'http://www.abisource.com/projects/enchant/'
|
2012-08-18 02:37:33 +00:00
|
|
|
url 'http://www.abisource.com/downloads/enchant/1.6.0/enchant-1.6.0.tar.gz'
|
|
|
|
sha1 '321f9cf0abfa1937401676ce60976d8779c39536'
|
2009-12-28 00:11:47 +00:00
|
|
|
|
2010-03-12 11:29:06 +00:00
|
|
|
depends_on 'glib'
|
2012-08-18 02:37:33 +00:00
|
|
|
depends_on 'aspell'
|
2009-12-28 00:11:47 +00:00
|
|
|
|
|
|
|
def install
|
2012-08-18 02:37:33 +00:00
|
|
|
system "./configure", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}",
|
|
|
|
"--disable-ispell",
|
|
|
|
"--disable-myspell"
|
2009-12-28 00:11:47 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|