blob: 7e61d48033953cd87e29f1117d444766f06dce0e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
require 'formula'
class Geany <Formula
url 'http://download.geany.org/geany-0.19.tar.gz'
homepage 'http://www.geany.org/Main/HomePage'
md5 '727cec2936846850bb088b476faad5f2'
depends_on 'pkg-config' => :build
depends_on 'gettext'
depends_on 'intltool'
depends_on 'gtk+'
def install
intltool = Formula.factory('intltool')
ENV.append "PATH", intltool.bin, ":"
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make install"
end
end
|