blob: 32a3121b034217fd2671d615e59225d4cfb37d5c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
require 'formula'
class Libgsf <Formula
url 'http://ftp.acc.umu.se/pub/GNOME/sources/libgsf/1.14/libgsf-1.14.17.tar.bz2'
homepage 'http://directory.fsf.org/project/libgsf/'
sha256 '10c6b69149e424ac5f325eb247fdf640ddd949952f21b99a890e73f9d4276876'
depends_on 'pkg-config'
depends_on 'gettext'
depends_on 'intltool'
depends_on 'glib'
def install
configure_args = [
"--prefix=#{prefix}",
"--disable-debug",
"--disable-dependency-tracking",
]
system "./configure", *configure_args
system "make install"
end
end
|