blob: b33844f5d43c37d92b2da06d6714033890c8f09e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
require "formula"
class Gtksourceview3 < Formula
homepage "http://projects.gnome.org/gtksourceview/"
url "http://ftp.gnome.org/pub/gnome/sources/gtksourceview/3.14/gtksourceview-3.14.0.tar.xz"
sha256 "b6a6036af0209cbc591afbae2fb13d2a92898a52cb76f652b94034da1bc0eba4"
depends_on :x11
depends_on "pkg-config" => :build
depends_on "intltool" => :build
depends_on "gettext"
depends_on "gtk+3"
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end
|