blob: 14b7cab5b8f9ce2d53b3d08d6e4386c6c5e1ba83 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
  | 
require 'formula'
class Atkmm < Formula
  homepage 'http://www.gtkmm.org'
  url 'http://ftp.acc.umu.se/pub/GNOME/sources/atkmm/2.22/atkmm-2.22.7.tar.xz'
  sha256 'bfbf846b409b4c5eb3a52fa32a13d86936021969406b3dcafd4dd05abd70f91b'
  depends_on 'xz' => :build
  depends_on 'pkg-config' => :build
  depends_on 'atk'
  depends_on 'glibmm'
  def install
    system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
    system "make install"
  end
end
  |