aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/malaga.rb
blob: 4de63ee485b0ecad6d0d2d8ea4c68b8bddce2be9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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'

  bottle do
    cellar :any
    sha1 "21c26733bf8c4d31017cbd751717777432004af3" => :mavericks
    sha1 "c7c3e9cb7aba63a2746f1acf5c274749a846928d" => :mountain_lion
    sha1 "3f93dd5b8ab479471e20e05c9a617ddb8a8e298d" => :lion
  end

  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