blob: 9041e396394fd759e0f0f214ffbfad3eb2580032 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
require 'formula'
class Geany < Formula
homepage 'http://geany.org/'
url 'http://download.geany.org/geany-1.24.1.tar.gz'
sha1 '2707b6bbcc4710e3dca990d26f66d679d82a2cc0'
depends_on :x11
depends_on 'pkg-config' => :build
depends_on 'intltool' => :build
depends_on 'gettext'
depends_on 'gtk+'
def install
system "./configure", "--disable-dependency-tracking",
"--disable-silent-rules",
"--prefix=#{prefix}"
system "make install"
end
end
|