blob: 3ed8463ce4aad99606972c3b4e4bead46f3c8715 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  | 
require 'formula'
class Libxmlxx < Formula
  url 'http://ftp.gnome.org/pub/GNOME/sources/libxml++/2.34/libxml++-2.34.1.tar.gz'
  homepage 'http://libxmlplusplus.sourceforge.net'
  md5 'c73e3916a1a0f4d01291c852e9af6241'
  depends_on 'glibmm'
  def install
    system "./configure", "--disable-dependency-tracking",
                          "--prefix=#{prefix}"
    system "make install"
  end
end
  |