blob: a55f11f3f99343357b3359cede487a7bfc8ac6d8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
require 'formula'
class Gtkglarea < Formula
homepage 'https://github.com/GNOME/gtkglarea'
url 'http://ftp.gnome.org/pub/GNOME/sources/gtkglarea/2.0/gtkglarea-2.0.1.tar.gz'
sha1 'db12f2bb9a3d28d69834832e2e04a255acfd8a6d'
depends_on :x11
depends_on 'gtk+'
depends_on 'pkg-config' => :build
def install
ENV.append 'LDFLAGS', '-lX11'
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make", "install"
end
end
|