dcfb8f312c
Closes Homebrew/homebrew#22582. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
17 lines
445 B
Ruby
17 lines
445 B
Ruby
require 'formula'
|
|
|
|
class Gtkspell3 < Formula
|
|
homepage 'http://gtkspell.sourceforge.net/'
|
|
url 'http://gtkspell.sourceforge.net/download/gtkspell3-3.0.3.tar.gz'
|
|
sha1 '48197eb666e061223901fea35f54c90925f128a8'
|
|
|
|
depends_on "gtk+3"
|
|
depends_on "enchant"
|
|
depends_on "intltool" => :build
|
|
depends_on "pkg-config" => :build
|
|
|
|
def install
|
|
system "./configure", "--disable-debug", "--prefix=#{prefix}"
|
|
system "make install"
|
|
end
|
|
end
|