gtkspell3 3.0.3

Closes Homebrew/homebrew#22582.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Arlo Breault 2013-09-15 19:59:35 -07:00 committed by Adam Vandenberg
parent fe7b5d8144
commit dcfb8f312c
1 changed files with 17 additions and 0 deletions

17
Formula/gtkspell3.rb Normal file
View File

@ -0,0 +1,17 @@
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