blob: ea88b0b69e307901fbd4e1b761ed9cf22af95b82 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
require 'formula'
class Homebank < Formula
homepage 'http://homebank.free.fr'
url 'http://homebank.free.fr/public/homebank-4.4.tar.gz'
sha1 '78b97c0ff118e21a1e0dd1935473601c2b7924a6'
depends_on 'pkg-config' => :build
depends_on 'intltool'
depends_on 'gettext'
depends_on 'gtk+'
depends_on 'hicolor-icon-theme'
depends_on :freetype
depends_on :fontconfig
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "chmod +x ./install-sh"
system "make install"
end
end
|