blob: c187c6edc2df30b276e06911433d4dd2dea95c0d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
require 'formula'
class Malaga < Formula
homepage 'http://home.arcor.de/bjoern-beutel/malaga/'
url 'http://home.arcor.de/bjoern-beutel/malaga/malaga-7.12.tgz'
sha1 '19d74697575229231c18c83bb7a16b7ee6c31a51'
depends_on 'pkg-config' => :build
depends_on 'glib'
depends_on 'gtk+' => :optional
def install
system "./configure", "--disable-debug",
"--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make", "install"
end
end
|