blob: 9b7afbe787d4bb6ccb25b6458491335b9bc7d0c2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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
|